Skip to content

Commit 3072503

Browse files
committed
set up node action
1 parent 61e32e7 commit 3072503

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@v5
1616

17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: "22"
21+
1722
- name: Setup Bun
1823
uses: oven-sh/setup-bun@v2
1924

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2929
fetch-depth: 0
3030

31+
- name: Setup Node.js
32+
uses: actions/setup-node@v4
33+
with:
34+
node-version: "22"
35+
3136
- name: Setup Bun
3237
uses: oven-sh/setup-bun@v2
3338

0 commit comments

Comments
 (0)