Skip to content

chore(deps): Update angular monorepo to v15 (major) #176

chore(deps): Update angular monorepo to v15 (major)

chore(deps): Update angular monorepo to v15 (major) #176

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run build:demo
- run: npm test -- --coverage
- name: SonarCloud Scan
if: startsWith(matrix.node-version, '16')
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}