CI: skip native postinstall scripts (canvas) in bun install

canvas tried to compile native bindings on the runner and failed (no
prebuilt binary for the Node ABI, no system cairo/pango). The Vite browser
build doesn't need it, so install with --ignore-scripts.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 13:24:20 -04:00
parent cb740c2521
commit 25f7865901
+3 -1
View File
@@ -19,7 +19,9 @@ jobs:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
# --ignore-scripts skips native postinstall builds (e.g. canvas) that
# aren't needed for the Vite browser build and fail on CI runners.
run: bun install --frozen-lockfile --ignore-scripts
- name: Build
run: bun run build