fix(ci): setup Node 24 before bun install for node-gyp (#35076)

This commit is contained in:
Luke Parker 2026-07-03 14:55:57 +10:00 committed by GitHub
commit 2ef1a5991c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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