Skip to content

Bump @typescript-eslint/eslint-plugin from 5.54.1 to 6.19.1 #240

Bump @typescript-eslint/eslint-plugin from 5.54.1 to 6.19.1

Bump @typescript-eslint/eslint-plugin from 5.54.1 to 6.19.1 #240

Workflow file for this run

name: ESLint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ESLint
run: |
npm install . # NPM does not allow a subset install, so install the entire thing to ascertain it uses the same eslint requirements.
- name: Run ESLint
run: npx eslint .
--config .eslintrc.json
--ext .js,.jsx,.ts,.tsx