Skip to content

docs: surface differentiation positioning across README, docs site, and npm metadata #10

docs: surface differentiation positioning across README, docs site, and npm metadata

docs: surface differentiation positioning across README, docs site, and npm metadata #10

Workflow file for this run

name: Docs CI
on:
pull_request:
branches: [main]
paths:
- 'website/**'
- '.github/workflows/docs-ci.yml'
jobs:
build:
name: Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v5
with:
node-version: '18'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm astro check
- name: Build site
run: pnpm build
- name: Upload build artifacts
uses: actions/upload-artifact@v5
with:
name: docs-build
path: website/dist