Skip to content

docs: add iteration features page and fix arrow overlap in examples #3

docs: add iteration features page and fix arrow overlap in examples

docs: add iteration features page and fix arrow overlap in examples #3

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
paths: [docs/**]
workflow_dispatch:
permissions:
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment: github-pages
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: cd docs && npm ci
- run: cd docs && npx astro build
- uses: actions/upload-pages-artifact@v3
with:
path: docs/dist
- uses: actions/deploy-pages@v4