build(deps-dev): bump rubocop-rspec from 2.23.2 to 2.24.0 #3905
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: CI | |
on: [push] | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Rubocop | |
run: bin/rubocop | |
brakeman: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Brakeman | |
run: bin/brakeman | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: get yarn cache directory path | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Setup cache key and directory for node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: lint | |
run: yarn eslint app/javascript | |
stylelint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: get yarn cache directory path | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Setup cache key and directory for node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: stylelint | |
run: npx stylelint "app/javascript/**/*.scss" | |
erb-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: erb-lint | |
run: bin/erblint --lint-all | |
i18n-tasks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: i18n-tasks | |
run: bin/i18n-tasks check-normalized | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: get yarn cache directory path | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Setup cache key and directory for node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: test | |
run: yarn test --coverage | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: get yarn cache directory path | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Setup cache key and directory for node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: prettier | |
run: yarn prettier app/javascript --check | |
schema: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432 | |
RAILS_ENV: test | |
services: | |
postgres: | |
image: postgres:14.6 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: run migrations | |
run: | | |
bin/rake db:create | |
bin/rake db:migrate | |
- name: check git diff | |
run: git diff --exit-code db/schema.rb | |
assets-precompile: | |
runs-on: ubuntu-latest | |
env: | |
RAILS_ENV: production | |
HEROKU_APP_NAME: dummy | |
REDIS_URL: dummy | |
SECRET_KEY_BASE: dummy | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: install required apt packages | |
run: sudo apt-get -y install libpq-dev | |
- name: get yarn cache directory path | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Setup cache key and directory for node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: run bin/rails assets:precompile | |
run: bin/rails assets:precompile | |
rspec: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_SERVER: postgres://postgres:postgres@localhost:5432 | |
RAILS_ENV: test | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: install required apt packages | |
run: sudo apt-get -y install libpq-dev | |
- name: get yarn cache directory path | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Setup cache key and directory for node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: setup database | |
run: | | |
bin/rake db:create | |
bin/rake db:schema:load | |
- name: rspec | |
run: bin/rspec | |
- name: Archive capybara artifacts | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: capybara | |
path: tmp/capybara/ |