Skip to content

Rename the spec because 4, 6, 12, and all counts are tested in the sa… #4636

Rename the spec because 4, 6, 12, and all counts are tested in the sa…

Rename the spec because 4, 6, 12, and all counts are tested in the sa… #4636

Workflow file for this run

name: Linting
env:
BUNDLE_WITHOUT: 'test development default'
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # Runs bundle install and caches gems.
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install
run: yarn install
- name: Run prettier
run: yarn prettier --check .
- name: Run lint
run: bundle exec rubocop --extra-details --display-style-guide --parallel
eslint:
name: EsLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Node Information
run: node --version
- name: Install
run: yarn install
- name: Run yarn lint
run: yarn lint