fix(ci): setup Node 24 before bun install for node-gyp (#35076)
This commit is contained in:
parent
83c638eaac
commit
2ef1a5991c
1 changed files with 7 additions and 0 deletions
7
.github/actions/setup-bun/action.yml
vendored
7
.github/actions/setup-bun/action.yml
vendored
|
|
@ -8,6 +8,13 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
# node-gyp@latest (invoked via bunx for native install scripts) requires Node >=22;
|
||||||
|
# some runner images ship an older system Node on PATH
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
||||||
|
with:
|
||||||
|
node-version: "24"
|
||||||
|
|
||||||
- name: Get baseline download URL
|
- name: Get baseline download URL
|
||||||
id: bun-url
|
id: bun-url
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue