Skip to content

chore(deps): update angular-cli monorepo to v19 (major) #6218

chore(deps): update angular-cli monorepo to v19 (major)

chore(deps): update angular-cli monorepo to v19 (major) #6218

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: v1-npm-deps-${{ hashFiles('**/package-lock.json') }}
restore-keys: v1-npm-deps-
- run: npm ci
- run: npm run lint
- run: npm run tests:coverage
- run: npm run schematics:test
- run: npm run schematics:build
- run: npm install -g @angular-devkit/schematics-cli
- run: npm run schematics:api-render:run
- run: npm run docs:build
- run: npm run build
- run: npm run schematics:package-patcher:run
- run: npm run typedoc
- name: npx semantic-release
if: success()
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release