ci: fix bun install (no lockfile in repo, --frozen-lockfile unreliable)
Some checks failed
CI/CD / typecheck (push) Successful in 42s
CI/CD / test (push) Successful in 54s
CI/CD / lint (push) Successful in 10m48s
CI/CD / build (push) Successful in 1m21s
CI/CD / docker (push) Failing after 21s
CI/CD / publish-rpm (push) Successful in 38s
CI/CD / deploy (push) Has been skipped

There's no bun.lockb in the repo, so --frozen-lockfile fails
intermittently when pnpm cache is unavailable. Use plain bun install.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michal
2026-03-09 01:35:49 +00:00
parent c79d92c76a
commit 9e8a17b778

View File

@@ -117,7 +117,8 @@ jobs:
run: |
mkdir -p dist
# bun needs a flat node_modules (pnpm's strict layout breaks resolution)
bun install --frozen-lockfile
# No bun.lockb in repo, so --frozen-lockfile is unreliable
bun install
# Stub for optional dep that bun tries to resolve
if [ ! -e node_modules/react-devtools-core ]; then
ln -s ../src/cli/stubs/react-devtools-core node_modules/react-devtools-core