Docs/release 1110 #318
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 Links | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'content/**/*.md' | |
| - 'content/**/*.mdx' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'content/**/*.md' | |
| - 'content/**/*.mdx' | |
| jobs: | |
| validate-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Validate links | |
| run: bun scripts/validateLinks.ts |