We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fbcddc commit 98539deCopy full SHA for 98539de
.github/workflows/CI.yml
@@ -8,7 +8,7 @@ jobs:
8
9
strategy:
10
matrix:
11
- node-version: [10.x, 12.x, 14.x]
+ node-version: [10.x, 12.x, 14.x, 16.x]
12
13
steps:
14
- uses: actions/checkout@v2
@@ -22,7 +22,7 @@ jobs:
22
run: node ./test/runTests.js
23
24
- name: Run tests
25
- if: matrix.node-version == '14.x'
+ if: matrix.node-version >= '14.x'
26
run: |
27
node ./test/validateModuleExportsMatchCommonJS/index.js
28
NODE_OPTIONS=--experimental-vm-modules node ./test/vm-modules/index.js
0 commit comments