fix(landing): derive the engine count from the grid, and correct it t… #76
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: linter | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| # Deliberately read-only. The upstream repository auto-committed Pint fixes, | |
| # which is unsafe once pull requests arrive from forks: it would hand a write | |
| # token to a workflow run whose input an outside contributor controls. Here the | |
| # job only reports, and the contributor runs `vendor/bin/pint` themselves. | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.4" | |
| tools: composer:v2 | |
| - name: Resolve the Composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" | |
| - name: Cache Composer downloads | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: composer-${{ runner.os }}-${{ hashFiles('composer.lock') }} | |
| restore-keys: composer-${{ runner.os }}- | |
| - name: Install dependencies | |
| run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
| - name: Check code style | |
| run: ./vendor/bin/pint --test |