Skip to content

Commit 69d08b0

Browse files
authored
Add Node.js setup and npm update to release workflow
Added Node.js setup and npm update steps to the workflow.
1 parent 8eb5e56 commit 69d08b0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version: '24'
23+
registry-url: 'https://registry.npmjs.org'
24+
25+
- name: Update npm
26+
run: npm install -g npm@latest
27+
2028
- name: Setup bun
2129
uses: oven-sh/setup-bun@v2
2230
with:

0 commit comments

Comments
 (0)