Skip to content

Bump @typescript-eslint/parser from 6.19.0 to 7.2.0 #346

Bump @typescript-eslint/parser from 6.19.0 to 7.2.0

Bump @typescript-eslint/parser from 6.19.0 to 7.2.0 #346

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- run: npm ci
- name: Run tests
run: |
STATUS=0
npm test || STATUS=$?
npm run lint -- --max-warnings=0 || STATUS=$?
exit $STATUS