From e13ec7a33022ba4cbf6e771a87c82eb305e4523f Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Fri, 3 Apr 2026 14:55:53 +0530 Subject: [PATCH] fix-1 --- .github/workflows/reviewing_changes.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reviewing_changes.yml b/.github/workflows/reviewing_changes.yml index 52ed37d..d0e8065 100644 --- a/.github/workflows/reviewing_changes.yml +++ b/.github/workflows/reviewing_changes.yml @@ -19,8 +19,10 @@ jobs: strategy: fail-fast: false max-parallel: 3 + # Node 14 not supported on macOS: No arm64 binary for Node 14. + # Ubuntu + Node 14 & Windows + Node 14: Syntax error (||= operator) in transitive dependency. Latest browserstack-node-sdk pulls packages incompatible with Node 14. matrix: - node: ['14', '16', '18', '20'] + node: ['16', '18', '20', '24'] os: [ macos-latest, windows-latest, ubuntu-latest ] name: Jest-js Repo ${{ matrix.node }} - ${{ matrix.os }} Sample env: @@ -68,8 +70,8 @@ jobs: npm publish staging_package.tgz --registry http://localhost:4873/ shell: bash - - name: Install dependencies - run: npm install + - name: Install dependencies (Node 16+) + run: npm ci - name: Run sample tests run: npm run sample-test