Skip to content

Bump @typescript-eslint/parser from 8.6.0 to 8.11.0 in /client #4243

Bump @typescript-eslint/parser from 8.6.0 to 8.11.0 in /client

Bump @typescript-eslint/parser from 8.6.0 to 8.11.0 in /client #4243

name: Client
on: [push, pull_request]
defaults:
run:
working-directory: ./client
jobs:
ng-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./client/package-lock.json
- name: Install dependencies (npm ci)
run: npm ci
env:
CYPRESS_INSTALL_BINARY: 0
- name: Test (npm run test)
run: npm run test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
ng-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./client/package-lock.json
- name: Install dependencies (npm ci)
run: npm ci
env:
CYPRESS_INSTALL_BINARY: 0
- name: Lint (npm run lint)
run: npm run lint