Add support for Rails 8.0 (#2705) #191
This file contains 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: diff-check | |
on: [push] | |
jobs: | |
appraisal: | |
runs-on: ubuntu-latest | |
env: | |
DIFF_CHECK_APPRAISAL: "true" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
- run: bundle install | |
- uses: nickcharlton/diff-check@main | |
with: | |
command: bundle exec appraisal | |
builds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JS | |
uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- uses: nickcharlton/diff-check@main | |
with: | |
command: | | |
yarn build | |
yarn build:css |