Skip to content

Commit 2e4834d

Browse files
committed
ci: install Bun so the daemon build step can run
`npm run build` runs scripts/build-daemon.sh, which compiles the remote-session daemon with Bun. The CI runner had no Bun, so build failed with `bun: command not found` (exit 127) — newly exposed now that the lint step passes and CI reaches the build step for the first time.
1 parent a9488be commit 2e4834d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ jobs:
1414
- uses: actions/setup-node@v4
1515
with:
1616
node-version: 22
17+
# The build compiles the remote-session daemon with Bun
18+
# (scripts/build-daemon.sh). Without it, `npm run build` fails with
19+
# `bun: command not found` (exit 127).
20+
- uses: oven-sh/setup-bun@v2
21+
with:
22+
bun-version: latest
1723
- run: npm install
1824
- run: npm run lint
1925
- run: npm run build

0 commit comments

Comments
 (0)