Skip to content

Commit ddd15ff

Browse files
committed
fix: update GitHub workflows to use Node 22 from .nvmrc
1 parent ab9f08e commit ddd15ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: '20'
24+
node-version-file: '.nvmrc'
2525
cache: 'pnpm'
2626

2727
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node.js
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: '20'
29+
node-version-file: '.nvmrc'
3030
cache: 'pnpm'
3131

3232
- name: Install dependencies
@@ -60,7 +60,7 @@ jobs:
6060
- name: Setup Node.js
6161
uses: actions/setup-node@v4
6262
with:
63-
node-version: '20'
63+
node-version-file: '.nvmrc'
6464
cache: 'pnpm'
6565

6666
- name: Install dependencies

0 commit comments

Comments
 (0)