Skip to content

raise to 2024 (#39)

raise to 2024 (#39) #3

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Run npm ci and build
run: |
npm ci --legacy-peer-deps
npm run build
- name: Deploy to gh-pages 🚀
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist/prod # The folder the action should deploy.
clean: true
single-commit: true