Skip to content

Bump @typescript-eslint/parser from 6.15.0 to 6.19.0 in /client #1165

Bump @typescript-eslint/parser from 6.15.0 to 6.19.0 in /client

Bump @typescript-eslint/parser from 6.15.0 to 6.19.0 in /client #1165

Workflow file for this run

name: Compile
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci and compile
run: |
npm ci
npm run compile
cd client
npm run lint
npm test
env:
CI: true