Skip to content

Codex/windows support #55

Codex/windows support

Codex/windows support #55

Workflow file for this run

# Build the docs site for PR/push confidence. Production deploys are handled
# by the Vercel project linked to apps/docs and the 1cli.dev domain.
name: Documentation Build
on:
pull_request:
paths:
- "apps/docs/**"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
push:
branches: [master]
paths:
- "apps/docs/**"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v7
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "24"
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install docs deps
run: pnpm --filter one-cli-docs install --frozen-lockfile
- name: Build docs site
run: pnpm docs:build