We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa7a1a commit 7b44d96Copy full SHA for 7b44d96
.github/workflows/format.yml
@@ -13,19 +13,19 @@ jobs:
13
steps:
14
- uses: actions/checkout@v4
15
16
- - name: Setup Bun
17
- uses: oven-sh/setup-bun@v2
18
- with:
19
- bun-version: latest
20
-
21
- - name: Cache Bun dependencies
+ - name: Cache Bun installation
22
uses: actions/cache@v4
23
with:
24
- path: ~/.bun/install/cache
+ path: ~/.bun
25
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
26
restore-keys: |
27
${{ runner.os }}-bun-
28
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: latest
+
29
- name: Install dependencies
30
run: bun install --frozen-lockfile
31
0 commit comments