docs(cli): add tts command to --help groups, CLI docs, and CLAUDE.md … #142
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 | |
| on: | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - "DOCS_GUIDELINES.md" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "docs/**" | |
| - "DOCS_GUIDELINES.md" | |
| concurrency: | |
| group: docs-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| name: Validate docs | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Validate build | |
| working-directory: docs | |
| run: npx mint validate | |
| - name: Check broken links | |
| working-directory: docs | |
| run: npx mint broken-links |