Skip to content

Commit 55f519f

Browse files
committed
nodejs 24 support added
1 parent 777f066 commit 55f519f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
- name: Use Node.js 22
20+
- name: Use Node.js
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 22
23+
node-version: 24
2424

2525
- name: Install Dependencies
2626
run: npm install -g pnpm && pnpm install

.github/workflows/deploy-site.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
# Test
21-
- name: Use Node.js 22
21+
- name: Use Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 22
24+
node-version: 24
2525

2626
- name: Install Dependencies
2727
run: npm install -g pnpm && pnpm install

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
ref: ${{ github.event.release.target_commitish }}
2020

21-
- name: Use Node.js 22
21+
- name: Use Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 22
24+
node-version: 24
2525

2626
- name: Install Dependencies
2727
run: npm install -g pnpm && pnpm install

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [20, 22]
17+
node-version: [20, 22, 24]
1818

1919
steps:
2020
- uses: actions/checkout@v4

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22
1+
24

0 commit comments

Comments
 (0)