Enhance comment forms #318
Workflow file for this run
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: "Lint CI" | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [22.x] | |
ruby: [3.3.3] | |
env: | |
RAILS_ENV: test | |
NODE_ENV: test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
bundle install | |
yarn install --frozen-lockfile --non-interactive --prefer-offline | |
- name: Build i18n libraries | |
run: bundle exec rake react_on_rails:locale | |
- name: Run lint | |
run: bundle exec rake lint |