From 4ddfb3acc1988c7097278558fcc4130976fb6c68 Mon Sep 17 00:00:00 2001 From: Kevin Eady <8634912+KevinEady@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:27:47 +0200 Subject: [PATCH] chore: enable experimental testing in ci-win.yml --- .github/workflows/ci-win.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 9cf332b4d..8338ddf48 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -14,6 +14,9 @@ jobs: strategy: fail-fast: false matrix: + api_version: + - standard + - experimental node-version: - 18.x - 20.x @@ -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