Skip to content

Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.7.0 #1302

Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.7.0

Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.7.0 #1302

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
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@v4
with:
node-version: 22
cache: 'npm'
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- run: pwd
- run: ls -ah ./node_modules/
- name: Run linters
run: ./node_modules/eslint/bin/eslint.js . -c eslint.config.js