Skip to content

eslint

eslint #11

Workflow file for this run

name: Website
on:
push:
branches: [primary]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build -w website
- uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: docs/.vitepress/dist
verbose: true
env:
GITHUB_TOKEN: ${{ secrets.DOCS_GITHUB_TOKEN }}