docs: improve Skill Scanner search descriptions #4
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 Website Docs | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "docs-site/**" | |
| - "scripts/validate_docs_site.py" | |
| - ".github/workflows/docs-site.yml" | |
| pull_request: | |
| paths: | |
| - "docs-site/**" | |
| - "scripts/validate_docs_site.py" | |
| - ".github/workflows/docs-site.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate website MDX | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Validate canonical website docs | |
| run: python scripts/validate_docs_site.py |