fix: migration script #779
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ๐ Checkout | |
| uses: actions/checkout@v6 | |
| - name: ๐ช Setup PHP | |
| uses: ./.github/actions/setup | |
| with: | |
| flux-username: ${{ secrets.FLUX_USERNAME }} | |
| flux-license-key: ${{ secrets.FLUX_LICENSE_KEY }} | |
| - name: ๐ฎ Install Composer Dependencies | |
| run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - name: Install Node Dependencies & Build Assets | |
| run: npm install && npm run build | |
| - name: ๐ต๏ธโโ๏ธ Run Laravel Pint | |
| run: composer test:lint | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ๐ Checkout | |
| uses: actions/checkout@v6 | |
| - name: ๐ช Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| flux-username: ${{ secrets.FLUX_USERNAME }} | |
| flux-license-key: ${{ secrets.FLUX_LICENSE_KEY }} | |
| - name: ๐ฎ Install Composer Dependencies | |
| run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - name: ๐ต๏ธโโ๏ธ Run PHPStan | |
| run: composer test:types | |
| type-coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ๐ Checkout | |
| uses: actions/checkout@v6 | |
| - name: ๐ช Setup PHP | |
| uses: ./.github/actions/setup | |
| with: | |
| flux-username: ${{ secrets.FLUX_USERNAME }} | |
| flux-license-key: ${{ secrets.FLUX_LICENSE_KEY }} | |
| - name: ๐ฎ Install Composer Dependencies | |
| run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - name: ๐ต๏ธโโ๏ธ Run PHPStan | |
| run: composer test:type-coverage | |
| composer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ๐ Checkout | |
| uses: actions/checkout@v6 | |
| - name: ๐ช Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| flux-username: ${{ secrets.FLUX_USERNAME }} | |
| flux-license-key: ${{ secrets.FLUX_LICENSE_KEY }} | |
| - name: ๐ต๏ธโโ๏ธ Run Composer Validate | |
| run: composer validate | |
| - name: ๐ต๏ธโโ๏ธ Run Composer Audit | |
| run: composer audit |