Skip to content

updated packages

updated packages #78

# This workflow will build the Angular library package and run all tests.
name: build and test library
on:
# Runs on pushes targeting the default branch
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- name: Build Library
run: npm run build
- name: Test Library
run: npm run test-headless