File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -136,8 +136,8 @@ jobs:
136136 - name : Save root ruby gems to cache
137137 uses : actions/cache@v4
138138 with :
139- path : vendor/bundle
140- key : package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-ruby${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
139+ path : react_on_rails/ vendor/bundle
140+ key : package-app-gem-cache-${{ hashFiles('react_on_rails/ Gemfile.lock') }}-ruby${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
141141 - id : get-sha
142142 run : echo "sha=\"$(git rev-parse HEAD)\"" >> "$GITHUB_OUTPUT"
143143 - name : Install Node modules with Yarn for renderer package
Original file line number Diff line number Diff line change @@ -128,10 +128,10 @@ jobs:
128128 - name : Save root ruby gems to cache
129129 uses : actions/cache@v4
130130 with :
131- path : vendor/bundle
132- key : package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
131+ path : react_on_rails/ vendor/bundle
132+ key : package-app-gem-cache-${{ hashFiles('react_on_rails/ Gemfile.lock') }}-${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
133133 - name : Install Ruby Gems for package
134- run : bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3
134+ run : cd react_on_rails && ( bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3)
135135 - name : Git Stuff
136136 if : matrix.dependency-level == 'minimum'
137137 run : |
Original file line number Diff line number Diff line change @@ -217,8 +217,8 @@ jobs:
217217 - name : Save root ruby gems to cache
218218 uses : actions/cache@v4
219219 with :
220- path : vendor/bundle
221- key : package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-ruby${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
220+ path : react_on_rails/ vendor/bundle
221+ key : package-app-gem-cache-${{ hashFiles('react_on_rails/ Gemfile.lock') }}-ruby${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
222222 - name : Save dummy app ruby gems to cache
223223 uses : actions/cache@v4
224224 with :
@@ -247,6 +247,7 @@ jobs:
247247 yarn run test:js
248248 - name : Install Ruby Gems for package
249249 run : |
250+ cd react_on_rails
250251 bundle lock --add-platform 'x86_64-linux'
251252 if ! bundle check --path=vendor/bundle; then
252253 bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3
@@ -285,7 +286,7 @@ jobs:
285286 run : |
286287 echo "CI_DEPENDENCY_LEVEL=ruby${{ matrix.ruby-version }}-${{ matrix.dependency-level }}" >> $GITHUB_ENV
287288 - name : Main CI
288- run : bundle exec rake run_rspec:all_dummy
289+ run : cd react_on_rails && bundle exec rake run_rspec:all_dummy
289290 - name : Store test results
290291 uses : actions/upload-artifact@v4
291292 with :
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ jobs:
123123 - name : yalc add react-on-rails
124124 run : cd react_on_rails/spec/dummy && yalc add react-on-rails
125125 - name : Install Node modules with Yarn for dummy app
126- run : cd react_on_rails/spec/dummy && yarn install --no-progress --no-emoji --frozen-lockfile
126+ run : cd react_on_rails/spec/dummy && yarn install --no-progress --no-emoji
127127 - name : Install Ruby Gems for package
128128 run : cd react_on_rails && bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3
129129 - name : Lint Ruby
You can’t perform that action at this time.
0 commit comments