Skip to content

Commit 5d60fba

Browse files
committed
chore: update CI configuration to use Node.js setup action v4
1 parent 05d2a74 commit 5d60fba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
strategy:
1313
matrix:
1414
node-version: [16.x, 18.x, 20.x, 22.x]
15-
os: [ ubuntu-latest, 'windows-latest' ]
15+
os: [ubuntu-latest, 'windows-latest']
1616
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
cache: 'npm'
2424
- run: npm ci
2525
- run: npm run build --if-present
2626
- run: npm test
27-
- name: Verify the command
27+
- name: Verify the command
2828
run: |
2929
node $(jq -r '.bin' package.json) --version
3030

0 commit comments

Comments
 (0)