Skip to content

Bump @angular/cli from 16.2.2 to 16.2.3 #7

Bump @angular/cli from 16.2.2 to 16.2.3

Bump @angular/cli from 16.2.2 to 16.2.3 #7

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18', '20' ]
name: Build on NodeJS ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test:ci
- name: Build
run: npm run build