Skip to content

Update benchmarks

Update benchmarks #119

Workflow file for this run

name: Deploy playground to github pages
on:
workflow_dispatch:
push:
paths:
- "playground/**"
release:
branches:
- dev
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm i --force
- run: tsc
- run: |
cd ./playground
npm i --force
npx next build
npx next export
touch ./out/.nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./playground/out