Skip to content

update solution to Angular v16 #1

update solution to Angular v16

update solution to Angular v16 #1

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout 🛎️
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 and build 🔧
run: |
npm ci
npm run build:lib
npm run build:gh-pages
- name: Run e2e tests 🧪
run: |
npm run cypress:verify
npm run cypress:run
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist/date-range-picker-demo