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 dd9766c commit 6b70a92Copy full SHA for 6b70a92
.github/workflows/ci.yml
@@ -2,9 +2,6 @@ name: ci
2
3
on: push
4
5
-env:
6
- BUNDLE_PATH: ~/.bundle
7
-
8
jobs:
9
lint:
10
runs-on: ubuntu-latest
@@ -32,7 +29,10 @@ jobs:
32
29
bundler-cache: false
33
30
34
31
- name: Install dependencies
35
- run: bun i && bundle
+ run: |
+ bun i
+ bundle config set path ~/.bundle
+ bundle
36
37
- name: Run linters
38
run: bin/lint
@@ -68,6 +68,7 @@ jobs:
68
- name: Set up Hotsheet
69
run: |
70
bun i --frozen-lockfile
71
72
bundle
73
bundle exec appraisal install
74
bun run build
0 commit comments