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 14cc8e9 commit 66cbb58Copy full SHA for 66cbb58
1 file changed
.github/workflows/ci-win.yml
@@ -14,6 +14,9 @@ jobs:
14
strategy:
15
fail-fast: false
16
matrix:
17
+ api_version:
18
+ - standard
19
+ - experimental
20
node-version:
21
- 18.x
22
- 20.x
@@ -42,6 +45,10 @@ jobs:
42
45
run: |
43
46
npm install
44
47
- name: npm test
48
+ shell: bash
49
50
+ if [ "${{ matrix.api_version }}" = "experimental" ]; then
51
+ export NAPI_VERSION=2147483647
52
+ fi
53
npm run pretest -- --verbose
54
node test
0 commit comments