build(deps): bump actions/setup-node from 6 to 7 #23
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: ['8.2', '8.3', '8.4'] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: '24' | |
| - run: composer install --prefer-dist --no-interaction | |
| # Hermetic: regenerates from the committed spec, so this verifies that the committed | |
| # generated code still reproduces from it, with no network dependency. Refreshing the | |
| # spec itself is the release workflow's job. | |
| - name: Codegen drift check | |
| if: matrix.php == '8.2' | |
| env: | |
| ROXYAPI_SPEC_FILE: specs/openapi.json | |
| run: | | |
| node scripts/generate.mjs | |
| git diff --exit-code -- specs/openapi.json src/Generated src/Roxy.php src/Version.php tests/Generated \ | |
| || { echo 'codegen drift: commit the regenerated files'; exit 1; } | |
| - name: Lint | |
| if: matrix.php == '8.2' | |
| run: vendor/bin/pint --test | |
| - name: Static analysis | |
| if: matrix.php == '8.2' | |
| run: vendor/bin/phpstan analyse --no-progress --memory-limit=512M | |
| - name: Test | |
| run: vendor/bin/pest --no-coverage |