Skip to content

chore(scripts): move JSDoc comment after all imports in run-tests-v20.js #1625

chore(scripts): move JSDoc comment after all imports in run-tests-v20.js

chore(scripts): move JSDoc comment after all imports in run-tests-v20.js #1625

Workflow file for this run

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