chore(scripts): move JSDoc comment after all imports in run-tests-v20.js #1625
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: Node CI | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| env: | |
| FORCE_COLOR: '1' | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - node-version: '20' | |
| - node-version: '22' | |
| - node-version: '24' | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/prepare | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Test (Node 20) | |
| if: matrix.node-version == '20' | |
| run: node scripts/run-tests-v20.js 'test/**/*.test.ts' | |
| - name: Test | |
| if: matrix.node-version != '20' | |
| run: npm test |