Skip to content

Commit cd29dbe

Browse files
authored
ci(ruby): don't run bundle update (#1034)
## 🧰 Changes We're running `bundle update` in our Ruby CI before running unit tests and this is upgrading all of our dependencies. Our usage of some of these dependencies apparently needs some work as every Ruby unit test fails on these updated deps.
1 parent 1dd6310 commit cd29dbe

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/ruby.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
16-
with:
17-
node-version: 16
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: 16
1818

19-
- run: npm ci --ignore-scripts
20-
- run: make test-metrics-ruby-rails
21-
- run: make test-webhooks-ruby-rails
19+
- run: npm ci --ignore-scripts
20+
- run: make test-metrics-ruby-rails
21+
- run: make test-webhooks-ruby-rails
2222

23-
- name: Cleanup
24-
if: always()
25-
run: docker-compose down
23+
- name: Cleanup
24+
if: always()
25+
run: docker-compose down
2626

2727
build:
2828
runs-on: ubuntu-latest
@@ -55,7 +55,6 @@ jobs:
5555
run: |
5656
make install
5757
gem install rack ${{ matrix.rack-version }}
58-
bundle update
5958
6059
- name: Run linter
6160
run: make lint

0 commit comments

Comments
 (0)