Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
node-version: "24"

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

- name: TypeScript typecheck
run: bun run typecheck
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
bun-version: latest

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

- name: TypeScript typecheck
run: bun run --cwd packages/pi-plugin typecheck
Expand All @@ -126,7 +126,7 @@ jobs:
bun-version: latest

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

# Frontend-only checks (no Rust/Tauri needed). The key gate is the test
# step, which runs config-parity.test.ts — it fails the build if the
Expand Down
Loading