Skip to content

Commit c47bc2b

Browse files
authored
ci: extend CI tests to Node.js 22 and 24 (#666)
1 parent 1661b30 commit c47bc2b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,20 @@ on:
1111
jobs:
1212
build:
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
os: [macos-latest, ubuntu-latest, windows-latest]
17+
node: # Node.js version https://github.com/nodejs/release#release-schedule
18+
- 20 # Maintenance LTS
19+
- 22 # Active LTS
20+
- 24 # Current
1621
runs-on: ${{ matrix.os }}
1722
steps:
1823
- uses: actions/checkout@v5
1924
- name: 💚 Use Node.js
2025
uses: actions/setup-node@v5
2126
with:
22-
node-version: 20
27+
node-version: ${{ matrix.node }}
2328
- name: 🚧 Install Dependencies
2429
run: npm ci
2530
- name: 📦 Build

0 commit comments

Comments
 (0)