Skip to content

Merge branch 'main' into dependabot/npm_and_yarn/client/types/node-18… #1767

Merge branch 'main' into dependabot/npm_and_yarn/client/types/node-18…

Merge branch 'main' into dependabot/npm_and_yarn/client/types/node-18… #1767

Workflow file for this run

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