From 76b10d59e3213daf4d23904d6b649ce6f997b9e7 Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 19 Apr 2024 15:26:26 -0700 Subject: [PATCH] test(ci): Node.js latest and canary in CI --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eab6fd34f6..19ba26cb0a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.x, 20.x] + node-version: [18.x, 20.x, 22.x, 22-v8-canary] platform: [ubuntu-latest, windows-latest] steps: @@ -105,7 +105,8 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - name: Install dependencies - run: yarn --frozen-lockfile + # We must --ignore-engines because node canary matches no ranges. + run: yarn --frozen-lockfile --ignore-engines # end macro