Documentation maintenance #3
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: Documentation maintenance | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '17 3 * * 1' | |
| permissions: | |
| contents: read | |
| jobs: | |
| links_and_freshness: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.10 | |
| - run: bun install --frozen-lockfile | |
| - name: Check external documentation links | |
| run: bun run scripts/check-docs-external-links.ts | |
| - name: Publish freshness report | |
| run: bun run scripts/report-docs-freshness.ts | |
| - name: Verify Stable published quickstart | |
| run: bun run test:docs-stable |