docs(ai-cloud): add ClusterMAX reference to production path intro #914
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: Validate Versioned Links | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'platform_versioned_docs/**' | |
| - 'vcluster_versioned_docs/**' | |
| - 'platform/**' | |
| - 'vcluster/**' | |
| - 'scripts/validate-versioned-links.js' | |
| workflow_dispatch: | |
| jobs: | |
| validate-versioned-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Validate versioned links | |
| # TODO: Remove continue-on-error once DOC-1190 fixes existing issues | |
| # Currently 104 pre-existing violations exist in versioned docs | |
| continue-on-error: true | |
| run: npm run validate-versioned-links |