Merge Docs-V2 to Main #371
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 Docs Index | |
| on: | |
| pull_request: | |
| branches: | |
| - docs-v2 | |
| - main | |
| push: | |
| branches: | |
| - docs-v2 | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| docs-index-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Install tooling dependencies | |
| run: npm --prefix tools ci | |
| - name: Verify docs-index.json is current | |
| run: node tools/scripts/generate-docs-index.js --check |