Skip to content

Merge pull request #1157 from UMM-CSci-3601/dependabot/npm_and_yarn/c… #1753

Merge pull request #1157 from UMM-CSci-3601/dependabot/npm_and_yarn/c…

Merge pull request #1157 from UMM-CSci-3601/dependabot/npm_and_yarn/c… #1753

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