fix(compare): correct four stale counts and four wrong prices #48
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: 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: 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 |