Skip to content

Commit 5103e7c

Browse files
committed
chore: update GitHub Actions workflows to use newer Node.js versions
Update both build.yml and test.yml workflow files to use Node.js versions 22.x and 24.x. This ensures compatibility with the latest features and performance improvements provided by Node.js
1 parent 82d47ad commit 5103e7c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [ 20.x, 22.x ]
13+
node-version: [ 22.x, 24.x ]
1414

1515
steps:
1616
- name: Checkout code
@@ -48,7 +48,7 @@ jobs:
4848
uses: actions/setup-node@v3
4949
with:
5050
cache: npm
51-
node-version: 20
51+
node-version: 24
5252

5353
- name: install dependencies
5454
run: npm ci

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [ 20.x, 22.x ]
13+
node-version: [ 22.x, 24.x ]
1414

1515
steps:
1616
- name: Checkout code

0 commit comments

Comments
 (0)