Remove unsupported overlay property for ReactRefreshWebpackPlugin #2995
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint JS and Ruby | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
jobs: | |
build: | |
env: | |
BUNDLE_FROZEN: true | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3 | |
bundler: 2.5.9 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
cache-dependency-path: '**/yarn.lock' | |
- name: Print system information | |
run: | | |
echo "Linux release: "; cat /etc/issue | |
echo "Current user: "; whoami | |
echo "Current directory: "; pwd | |
echo "Ruby version: "; ruby -v | |
echo "Node version: "; node -v | |
echo "Yarn version: "; yarn --version | |
echo "Bundler version: "; bundle --version | |
- name: Save root ruby gems to cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor/bundle | |
key: package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-oldest | |
- name: Install Node modules with Yarn for renderer package | |
run: | | |
yarn install --no-progress --no-emoji --frozen-lockfile | |
sudo yarn global add yalc | |
- name: yalc publish for react-on-rails | |
run: yalc publish | |
- name: yalc add react-on-rails | |
run: cd spec/dummy && yalc add react-on-rails | |
- name: Install Node modules with Yarn for dummy app | |
run: cd spec/dummy && yarn install --no-progress --no-emoji --frozen-lockfile | |
- name: Install Ruby Gems for package | |
run: bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 | |
- run: ls vendor/bundle/ruby/3.4.4/gems | |
- name: Lint Ruby | |
run: bundle exec rubocop | |
- name: Install Node modules with Yarn for dummy app | |
run: cd spec/dummy && yarn install --no-progress --no-emoji --frozen-lockfile | |
- name: Save dummy app ruby gems to cache | |
uses: actions/cache@v4 | |
with: | |
path: spec/dummy/vendor/bundle | |
key: spec-dummy-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }}-oldest | |
- run: ls vendor/bundle/ruby/3.4.4/gems | |
- run: ls spec/dummy/vendor/bundle/ruby/3.4.4/gems | |
- name: Install Ruby Gems for dummy app | |
run: | | |
cd spec/dummy | |
bundle lock --add-platform 'x86_64-linux' | |
if ! bundle check --path=vendor/bundle; then | |
bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 --frozen | |
fi | |
- run: ls spec/dummy/vendor/bundle/ruby/3.4.4/gems |