Skip to content

Bump eslint from 9.3.0 to 9.20.0 (#4) #30

Bump eslint from 9.3.0 to 9.20.0 (#4)

Bump eslint from 9.3.0 to 9.20.0 (#4) #30

Workflow file for this run

name: linting
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: {
contents: read
}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: "☁️ checkout repository"
uses: actions/checkout@v4
with:
persist-credentials: false
- name: '📦 Install NPM Dependencies'
run: npm install
- name: "🧹 Run Eslint"
uses: reviewdog/action-eslint@v1
with:
reporter: github-check
fail_level: 'error'