This repository was archived by the owner on Aug 3, 2026. It is now read-only.
docs: Generate MCP manual from the latest CLI #3
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
| name: Check MCP documentation | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/*mcp-docs.yml" | |
| - "docs/university/mcp.md" | |
| - "package.json" | |
| - "pnpm-lock.yaml" | |
| - "scripts/generate-docs.test.ts" | |
| - "scripts/generate-docs.ts" | |
| - "tsconfig.json" | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: Test the generator | |
| run: pnpm test | |
| - name: Typecheck the generator | |
| run: pnpm typecheck | |
| - name: Verify the generated manual | |
| run: pnpm docs:mcp:check |