Skip to content

Commit 6b70a92

Browse files
committed
Fix CI cache
1 parent dd9766c commit 6b70a92

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: ci
22

33
on: push
44

5-
env:
6-
BUNDLE_PATH: ~/.bundle
7-
85
jobs:
96
lint:
107
runs-on: ubuntu-latest
@@ -32,7 +29,10 @@ jobs:
3229
bundler-cache: false
3330

3431
- name: Install dependencies
35-
run: bun i && bundle
32+
run: |
33+
bun i
34+
bundle config set path ~/.bundle
35+
bundle
3636
3737
- name: Run linters
3838
run: bin/lint
@@ -68,6 +68,7 @@ jobs:
6868
- name: Set up Hotsheet
6969
run: |
7070
bun i --frozen-lockfile
71+
bundle config set path ~/.bundle
7172
bundle
7273
bundle exec appraisal install
7374
bun run build

0 commit comments

Comments
 (0)