Skip to content

Commit cfc8b7b

Browse files
author
Confitty Developer
committed
fix(ci): drop --frozen-lockfile from bun install
The committed bun.lock predates the recent package.json updates (name, metadata, removal of dangling lint/test scripts), and the active Nx migration leaves bun.lock further out of sync locally. --frozen-lockfile makes CI hard-fail on any drift, which blocked installs. Use plain `bun install` until the Nx migration lands and the lockfile is refreshed in a dedicated commit.
1 parent 3f93720 commit cfc8b7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
${{ runner.os }}-bun-
3838
3939
- name: Install dependencies
40-
run: bun install --frozen-lockfile
40+
run: bun install
4141

4242
- name: Type check
4343
run: bun run typecheck

0 commit comments

Comments
 (0)