Codex/windows support #55
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |