Skip to content

Bump @typescript-eslint/parser from 8.3.0 to 8.7.0 #106

Bump @typescript-eslint/parser from 8.3.0 to 8.7.0

Bump @typescript-eslint/parser from 8.3.0 to 8.7.0 #106

Workflow file for this run

name: Check linting
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.JS
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: npm
- name: Install dependencies
run: npm ci
- name: Verify linter
run: npm run lint:check