build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.42.1 to… #5201
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@v4 | |
- 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@v4 | |
- 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@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: npm | |
run: npm ci | |
- name: lint | |
run: npx eslint app/javascript | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: npm | |
run: npm ci | |
- name: lint | |
run: npx markdownlint-cli2 './**/*.md' | |
stylelint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: npm | |
run: npm ci | |
- name: stylelint | |
run: npx stylelint "app/javascript/**/*.scss" | |
erb-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- 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@v4 | |
- 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@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: npm | |
run: npm ci | |
- name: test | |
run: npm run test -- --coverage | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: npm | |
run: npm ci | |
- name: prettier | |
run: npx prettier app/javascript --check | |
schema: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432 | |
RAILS_ENV: test | |
services: | |
postgres: | |
image: postgres:15.5-alpine | |
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@v4 | |
- 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@v4 | |
- 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 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: npm install | |
run: npm i --omit=dev | |
- 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:15.5-alpine | |
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@v4 | |
- 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 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: npm | |
run: npm ci | |
- 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@v4 | |
if: failure() | |
with: | |
name: capybara | |
path: tmp/capybara/ |