Skip to content

Commit

Permalink
fixes?
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Jun 28, 2024
1 parent 2061f3a commit 82a2aa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
- name: Install Node modules with Yarn for renderer package
run: |
yarn install --no-progress --no-emoji
yarn run eslint -v
sudo yarn global add yalc
- name: yalc publish for react-on-rails
run: yalc publish
Expand Down Expand Up @@ -140,10 +139,11 @@ jobs:
with:
path: spec/dummy/public/webpack
key: dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }}-${{ matrix.versions }}
- name: Install Node modules with Yarn for renderer package
- name: Install Node modules with Yarn
run: |
yarn install --no-progress --no-emoji
sudo yarn global add yalc
cd spec/dummy && yarn install --no-progress --no-emoji
- name: yalc publish for react-on-rails
run: yalc publish
- name: yalc add react-on-rails
Expand All @@ -169,6 +169,7 @@ jobs:
- name: generate file system-based packs
run: cd spec/dummy && RAILS_ENV=test bundle exec rake react_on_rails:generate_packs
- name: Git Stuff
if: matrix.versions == 'oldest'
run: |
git config user.email "[email protected]"
git config user.name "Your Name"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rspec-package-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
rspec-package-tests:
strategy:
fail-fast: false
matrix:
versions: ['oldest', 'newest']
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 82a2aa7

Please sign in to comment.