Skip to content

refactor: modernize repo and add docs/ #2

refactor: modernize repo and add docs/

refactor: modernize repo and add docs/ #2

Workflow file for this run

name: Site CI
on:
pull_request:
push:
branches: [master]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
with:
version: '7.0.0'
- uses: actions/setup-node@v6
with:
node-version: 26
cache: pnpm
- run: pnpm install --no-frozen-lockfile
- run: pnpm run check
- run: pnpm run build
- uses: actions/upload-artifact@v7
with:
name: site
path: dist
include-hidden-files: true