From 9e8a17b7783bd677e58df933fa51bbb65ba1fe93 Mon Sep 17 00:00:00 2001 From: Michal Date: Mon, 9 Mar 2026 01:35:49 +0000 Subject: [PATCH] ci: fix bun install (no lockfile in repo, --frozen-lockfile unreliable) 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 --- .gitea/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 27fc3e0..1d6cc6e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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