Skip to content

chore: bump @typescript-eslint/parser from 7.11.0 to 7.13.1 #425

chore: bump @typescript-eslint/parser from 7.11.0 to 7.13.1

chore: bump @typescript-eslint/parser from 7.11.0 to 7.13.1 #425

Workflow file for this run

name: Quality assurance
on:
pull_request:
branches: ["main"]
jobs:
qa:
name: Quality assurance
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm test
- name: Build
run: |
npm run build