Skip to content

Add docs page for features/limitations #9

Add docs page for features/limitations

Add docs page for features/limitations #9

Workflow file for this run

name: Site Build
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/site-build.yml'
- 'website/**'
jobs:
site-build:
name: Site Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./website
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: ./website/package-lock.json
- run: npm install --frozen-lockfile
- run: npm run build