Skip to content

Merge pull request #59 from RobQuincey-DC/feature-add-abstract-to-style #71

Merge pull request #59 from RobQuincey-DC/feature-add-abstract-to-style

Merge pull request #59 from RobQuincey-DC/feature-add-abstract-to-style #71

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
name: Build app & deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node & NPM
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install lib dependencies
run: npm ci
- name: Install app dependencies
working-directory: app
run: npm ci
- name: Build library output
run: npm run build
- name: Build library docs
working-directory: app
run: npm run docs
- name: Build demo
working-directory: app
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./app/dist
keep_files: false
exclude_assets: '*.js.map'