Skip to content

chore: update ng to 18.2.6 & npm audit fix (#79) #54

chore: update ng to 18.2.6 & npm audit fix (#79)

chore: update ng to 18.2.6 & npm audit fix (#79) #54

Workflow file for this run

name: Deploy Demo App
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Build Lib
run: npm run build:lib
- name: Build Demo App
run: npm run build:demo
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist/demo