We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9fa06 commit 5cc3037Copy full SHA for 5cc3037
1 file changed
.github/workflows/test.yml
@@ -35,14 +35,14 @@ jobs:
35
run: npm install --only=prod
36
37
- name: Run unit tests
38
- if: ${{ matrix.node-version >= 18 }}
+ if: ${{ matrix.node-version >= 20 }}
39
run: npm test
40
41
- - name: Run unit tests (node < 18)
42
- if: ${{ matrix.node-version < 18 }}
+ - name: Run unit tests (node < 20)
+ if: ${{ matrix.node-version < 20 }}
43
run: node scripts/legacy-test-runner.js
44
45
- name: Run unit tests (compilers)
46
47
run: npm install typescript coffee-script --no-save && npm run test:compilers
48
0 commit comments