Skip to content

Commit

Permalink
chore: enable experimental testing in ci-win.yml (#1548)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinEady authored Aug 2, 2024
1 parent 14cc8e9 commit 66cbb58
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
api_version:
- standard
- experimental
node-version:
- 18.x
- 20.x
Expand Down Expand Up @@ -42,6 +45,10 @@ jobs:
run: |
npm install
- name: npm test
shell: bash
run: |
if [ "${{ matrix.api_version }}" = "experimental" ]; then
export NAPI_VERSION=2147483647
fi
npm run pretest -- --verbose
node test

0 comments on commit 66cbb58

Please sign in to comment.