Skip to content

Commit a4dea68

Browse files
committed
use correct comparision path
1 parent d8b7f9f commit a4dea68

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/lint-js-and-ruby.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: cd spec/dummy && yarn install --no-progress --no-emoji --frozen-lockfile
5353
- name: Install Ruby Gems for package
5454
run: bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3
55-
- run: ls vendor/bundle
55+
- run: ls vendor/bundle/ruby/3.4.4/gems
5656
- name: Lint Ruby
5757
run: bundle exec rubocop
5858
- name: Install Node modules with Yarn for dummy app
@@ -62,15 +62,13 @@ jobs:
6262
with:
6363
path: spec/dummy/vendor/bundle
6464
key: spec-dummy-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }}-oldest
65-
- run: ls spec/dummy/vendor/bundle
66-
- run: ls vendor/bundle/gems
65+
- run: ls vendor/bundle/ruby/3.4.4/gems
66+
- run: ls spec/dummy/vendor/bundle/ruby/3.4.4/gems
6767
- name: Install Ruby Gems for dummy app
6868
run: |
6969
cd spec/dummy
7070
bundle lock --add-platform 'x86_64-linux'
7171
if ! bundle check --path=vendor/bundle; then
7272
bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 --frozen
7373
fi
74-
- run: ls spec/dummy/vendor/bundle
75-
- run: ls vendor/bundle/gems
76-
- run: ls spec/dummy/vendor/bundle/gems
74+
- run: ls spec/dummy/vendor/bundle/ruby/3.4.4/gems

0 commit comments

Comments
 (0)