Skip to content

Commit 0a4d090

Browse files
committed
CI: Update Node.js version matrix and fix install command
1 parent 1dc731d commit 0a4d090

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ jobs:
131131
workflows:
132132
build_and_test:
133133
jobs:
134+
- test-v16
134135
- test-v18
135136
- test-v20
136137
- test-v22

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
node-version: [18.x, 20.x, 22.x]
14+
node-version: [16.x, 18.x, 20.x, 22.x]
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- name: Run build
23-
run: npm isntall
23+
run: npm install
2424
- name: Run test
2525
run: npm run test
2626
- name: Verify build and test

0 commit comments

Comments
 (0)