Skip to content

remove this

remove this #9

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: test-${{ github.ref_name }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
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 26 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- 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