Skip to content

Bump @typescript-eslint/eslint-plugin from 8.8.1 to 8.18.0 #339

Bump @typescript-eslint/eslint-plugin from 8.8.1 to 8.18.0

Bump @typescript-eslint/eslint-plugin from 8.8.1 to 8.18.0 #339

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run TypeScript Linting
run: npm run eslint && npm run prettier