Skip to content

chore(deps): bump @angular/router from 17.0.4 to 17.3.8 #473

chore(deps): bump @angular/router from 17.0.4 to 17.3.8

chore(deps): bump @angular/router from 17.0.4 to 17.3.8 #473

Workflow file for this run

name: integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- run: npm run test -- edit-in-place --no-watch --no-progress --browsers=ChromeHeadless
- run: npm run prettier:check
env:
CI: true