Skip to content

Commit fbdbaa0

Browse files
committed
reinstate cache
1 parent c18a3d0 commit fbdbaa0

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/typedoc.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,23 @@ jobs:
2121
uses: actions/cache@v4
2222
with:
2323
path: .turbo
24-
key: ${{ runner.os }}-turbo-${{ github.sha }}
24+
key: ${{ runner.os }}-tb-${{ github.sha }}
2525
restore-keys: |
26-
${{ runner.os }}-turbo-
26+
${{ runner.os }}-tb-
27+
28+
- name: Setup Bun
29+
uses: oven-sh/setup-bun@v2
30+
with:
31+
bun-version: latest
32+
33+
- name: Cache dependencies
34+
uses: actions/cache@v4
35+
with:
36+
path: ~/.bun/install/cache
37+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
38+
restore-keys: |
39+
${{ runner.os }}-bun-
2740
28-
- uses: oven-sh/setup-bun@v2
2941
- name: Install dependencies
3042
run: bun install --frozen-lockfile
3143
- name: Build

0 commit comments

Comments
 (0)