Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/ci-test.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -70,6 +70,11 @@ jobs:

- name: Setup Bun
uses: ./.github/actions/setup-bun
with:
# ci-typecheck.yml's Linux job is the designated Linux cache
# saver (runs on every push, fast, low collision risk) — this job
# only restores, to avoid racing on the same {OS}-bun-{hash} key.
save-cache: false

- name: Configure Git Identity
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release-fork.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -87,6 +87,13 @@ jobs:
- name: Setup Bun
if: inputs.platforms == '' || contains(inputs.platforms, matrix.name)
uses: ./.github/actions/setup-bun
with:
# Linux and Windows bun caches are each owned by a single saver
# elsewhere (ci-typecheck.yml linux, ci-test.yml e2e windows) to
# avoid racing on the same {OS}-bun-{hash} key when this manual
# release build runs concurrently with a push-triggered CI run.
# macOS has no other job in the repo, so it's safe to save here.
save-cache: ${{ matrix.name == 'macos' }}

- name: Build CLI
if: inputs.platforms == '' || contains(inputs.platforms, matrix.name)
Expand Down
Loading