Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/reviewing_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
Loading