We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c18a3d0 commit fbdbaa0Copy full SHA for fbdbaa0
.github/workflows/typedoc.yml
@@ -21,11 +21,23 @@ jobs:
21
uses: actions/cache@v4
22
with:
23
path: .turbo
24
- key: ${{ runner.os }}-turbo-${{ github.sha }}
+ key: ${{ runner.os }}-tb-${{ github.sha }}
25
restore-keys: |
26
- ${{ runner.os }}-turbo-
+ ${{ 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
36
+ path: ~/.bun/install/cache
37
+ key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
38
+ restore-keys: |
39
+ ${{ runner.os }}-bun-
40
- - uses: oven-sh/setup-bun@v2
41
- name: Install dependencies
42
run: bun install --frozen-lockfile
43
- name: Build
0 commit comments