Skip to content

Commit 2ef1a59

Browse files
authored
fix(ci): setup Node 24 before bun install for node-gyp (anomalyco#35076)
1 parent 83c638e commit 2ef1a59

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/actions/setup-bun/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ inputs:
88
runs:
99
using: "composite"
1010
steps:
11+
# node-gyp@latest (invoked via bunx for native install scripts) requires Node >=22;
12+
# some runner images ship an older system Node on PATH
13+
- name: Setup Node
14+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
15+
with:
16+
node-version: "24"
17+
1118
- name: Get baseline download URL
1219
id: bun-url
1320
shell: bash

0 commit comments

Comments
 (0)