Bump @angular/router from 16.2.9 to 16.2.10 in /crud-angular #229
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: Angular Build | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v3 | |
with: | |
working-directory: crud-angular | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
cache-dependency-path: crud-angular/package-lock.json | |
- name: Install dependencies | |
run: npm install | |
working-directory: crud-angular | |
- name: Run tests | |
run: npm run test:ci | |
working-directory: crud-angular | |
- name: Build | |
run: npm run build | |
working-directory: crud-angular |