docs: remove template-generation artifacts from QUICKSTART.md #1
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: PR Validation Suite | |
| on: | |
| pull_request: | |
| branches: [ main, master ] | |
| paths: | |
| - '**/*.md' | |
| jobs: | |
| validate-markdown: | |
| name: Markdown Lint & Link Verification | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Markdown Lint Check | |
| uses: davidanson/markdownlint-cli2-action@v16 | |
| with: | |
| globs: | | |
| **/*.md | |
| !node_modules/** | |
| !venv/** | |
| - name: Check for Broken Links in Docs | |
| uses: lycheeverse/lychee-action@v1.9.3 | |
| with: | |
| args: --verbose --no-progress "**/*.md" | |
| fail: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |