Skip to content

Commit 66cbb58

Browse files
authored
chore: enable experimental testing in ci-win.yml (#1548)
1 parent 14cc8e9 commit 66cbb58

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci-win.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17+
api_version:
18+
- standard
19+
- experimental
1720
node-version:
1821
- 18.x
1922
- 20.x
@@ -42,6 +45,10 @@ jobs:
4245
run: |
4346
npm install
4447
- name: npm test
48+
shell: bash
4549
run: |
50+
if [ "${{ matrix.api_version }}" = "experimental" ]; then
51+
export NAPI_VERSION=2147483647
52+
fi
4653
npm run pretest -- --verbose
4754
node test

0 commit comments

Comments
 (0)