docs(mcp): expand quick-connect matrix to 19 agent ecosystem clients #34
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: Docs build (PR) | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'repo_pages/**' | |
| - '.github/workflows/docs-pr.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: repo_pages/package-lock.json | |
| - name: Verify documentation site builds | |
| run: cd repo_pages && npm ci && npm run docs:build |