Skip to content

Use the latest version of actions/checkout #7

Use the latest version of actions/checkout

Use the latest version of actions/checkout #7

Workflow file for this run

name: Code Quality
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
permissions:
contents: write
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Dependencies
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
npm install
- name: Run Pint
run: vendor/bin/pint --test
- name: Frontend Format Check
run: npm run format -- --check
- name: Frontend Lint
run: npm run lint
- name: PHPStan
run: ./vendor/bin/phpstan