Skip to content

CI/CD for Symfony projects #126

CI/CD for Symfony projects

CI/CD for Symfony projects #126

Workflow file for this run

name: Pull Request
env:
FONTAWESOME_PACKAGE_TOKEN: ${{ secrets.FONTAWESOME_PACKAGE_TOKEN }}
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checkformat:
name: 'Check ESLint and Prettier rules'
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v4'
with:
fetch-depth: 0
- name: Set up Moon Toolchain
uses: 'moonrepo/setup-toolchain@v0'
- name: Run ESLint
run: moon ci :format
- name: Run Prettier
run: moon ci :lint