remove this #9
This file contains hidden or 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: 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 | ||
| - 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 | ||