Skip to content

add pre/post anim enum values #47

add pre/post anim enum values

add pre/post anim enum values #47

Workflow file for this run

on:
push:
branches:
- '*'
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run test-all
- run: npm -w cache2-ts pack
- run: |
npm run -w viewer build
cp -r viewer/public/* viewer/dist/
- uses: actions/upload-pages-artifact@v3
with:
path: "viewer/dist"
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- id: deployment
uses: actions/deploy-pages@v4