Skip to content

Commit e6b65ed

Browse files
committed
we don't have blacksmith (yet)
1 parent 5db584b commit e6b65ed

24 files changed

Lines changed: 10 additions & 8 deletions

.github/actions/setup-bun/action.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ description: "Setup Bun with caching and install dependencies"
33
runs:
44
using: "composite"
55
steps:
6-
- name: Mount Bun Cache
7-
uses: useblacksmith/stickydisk@v1
8-
with:
9-
key: ${{ github.repository }}-bun-cache
10-
path: ~/.bun
11-
126
- name: Setup Bun
137
uses: oven-sh/setup-bun@v2
148
with:
159
bun-version-file: package.json
1610

11+
- name: Cache Bun dependencies
12+
uses: actions/cache@v4
13+
with:
14+
path: ~/.bun/install/cache
15+
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
16+
restore-keys: |
17+
${{ runner.os }}-bun-
18+
1719
- name: Install dependencies
1820
run: bun install
1921
shell: bash
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)