Merge pull request #1148 from UMM-CSci-3601/dependabot/npm_and_yarn/c… #1779
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |