Skip to content

Bump nokogiri from 1.16.4 to 1.16.5 in /gemfiles/rails_61 #170

Bump nokogiri from 1.16.4 to 1.16.5 in /gemfiles/rails_61

Bump nokogiri from 1.16.4 to 1.16.5 in /gemfiles/rails_61 #170

Workflow file for this run

name: ESLint
on:
pull_request:
env:
NODE_VERSION: ${{ vars.ESLINT_NODE_VERSION || '20.x' }}
jobs:
eslint:
name: Run eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- uses: tj-actions/changed-files@v44
id: changed-files
with:
files: |
**.js
package*.json
yarn.lock
.github/workflows/eslint.yml
- uses: reviewdog/action-eslint@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
filter_mode: nofilter # added (default), diff_context, file, nofilter
fail_on_error: true
reporter: github-pr-check