Skip to content

Commit 0334587

Browse files
committed
running on node version 18, 20, 22
1 parent f0ddeff commit 0334587

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest] # Operating systems to test
19-
node-version: [14, 16, 18, 20, 22] # Node.js versions to test
19+
node-version: [18, 20, 22] # Node.js versions to test
2020
attempt: [1, 2, 3, 4, 5] # Repeat tests 5 times
2121

2222
steps:
@@ -29,9 +29,11 @@ jobs:
2929
node-version: ${{ matrix.node-version }}
3030

3131
- name: Install dependencies
32-
run: npm install
32+
run: |
33+
npm install
34+
3335
3436
- name: Testing on OS (${{ matrix.os }}) with Node.js (version ${{ matrix.node-version }}) attempt ${{ matrix.attempt }}
3537
run: |
3638
echo "Run attempt: ${{ matrix.attempt }}"
37-
npm test
39+
npx jest test

0 commit comments

Comments
 (0)