Skip to content

Bump eslint-plugin-jsdoc from 50.2.3 to 50.4.1 in /client #4227

Bump eslint-plugin-jsdoc from 50.2.3 to 50.4.1 in /client

Bump eslint-plugin-jsdoc from 50.2.3 to 50.4.1 in /client #4227

Workflow file for this run

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