Skip to content

wip

wip #5

Workflow file for this run

name: Lint
on: [pull_request]
concurrency:
group: lint-${{ github.ref_name }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
permissions:
contents: read
env:
BUNDLE_ONLY: "lint"
jobs:
ruby:
name: Check Ruby
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- name: Lint Ruby files
run: bin/rake lint:rb
- name: Store test results
uses: actions/upload-artifact@v4
with:
name: rubocop-results
path: test-results
erb:
name: Check ERB
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- name: Lint ERB files
run: bin/rake lint:erb
javascript:
name: Check JavaScript
runs-on: ubuntu-latest
env:
ESLINT_USE_FLAT_CONFIG: false
steps:
- uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- name: Set up Node.js

Check failure on line 61 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 61
- uses: actions/setup-node@v4
with:
node-version: '24'
- name: Install ESLint globally
run: npm install -g eslint@10
- name: Lint JS files
run: bin/rake lint:js