Skip to content

[ESLint] Apply filter instead of adding #1893

[ESLint] Apply filter instead of adding

[ESLint] Apply filter instead of adding #1893

Workflow file for this run

name: ESLint
run-name: '[ESLint] ${{ github.event.head_commit.message }}'
on: push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci --ignore-scripts --legacy-peer-deps
- name: Run linters
uses: wearerequired/lint-action@v2
with:
auto_fix: true
eslint: true