Skip to content

refactor: restructure docs with dynamic routing #33

refactor: restructure docs with dynamic routing

refactor: restructure docs with dynamic routing #33

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
task: [lint, typecheck, build]
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run ${{ matrix.task }}
run: pnpm ${{ matrix.task }}