Skip to content

Bump @typescript-eslint/parser from 6.21.0 to 8.14.0 #292

Bump @typescript-eslint/parser from 6.21.0 to 8.14.0

Bump @typescript-eslint/parser from 6.21.0 to 8.14.0 #292

Workflow file for this run

name: Node.js build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
defaults:
run:
working-directory: src/
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build, lint, and test
run: npm test