Skip to content

Bump the angular-dependencies group with 2 updates (#5) #15

Bump the angular-dependencies group with 2 updates (#5)

Bump the angular-dependencies group with 2 updates (#5) #15

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 NodeJS ${{ matrix.node }}
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