Bump eslint from 9.17.0 to 9.18.0 #549
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: # yamllint disable-line rule:truthy | |
pull_request: | |
workflow_call: | |
jobs: | |
Ruby: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run the Ruby tests | |
env: | |
COVERAGE: true | |
RAILS_ENV: test | |
SE_AVOID_STATS: true | |
run: bin/rails db:setup ruby:test | |
JavaScript: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Enable the Corepack tool | |
run: corepack enable | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version-file: ".tool-versions" | |
- name: Install the Node dependencies | |
run: yarn install | |
- name: Run the JavaScript tests | |
run: yarn test:coverage | |
Linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Enable the Corepack tool | |
run: corepack enable | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version-file: ".tool-versions" | |
- name: Install the Node dependencies | |
run: yarn install | |
- name: Lint the ERB | |
run: bin/rake erb:lint | |
- name: Lint the Ruby | |
run: bin/rubocop --format github --parallel | |
- name: Lint the JavaScript | |
run: yarn lint | |
- name: Lint the CSS | |
run: yarn lint:css | |
Docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Build the image | |
uses: docker/build-push-action@v6 | |
with: | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
push: false | |
Vulnerabilities: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Scan for vulnerabilities | |
run: bin/brakeman --format github --no-pager | |
- name: Scan for vulnerabilities in JavaScript dependencies | |
run: bin/importmap audit |