Skip to content

docs: remove template-generation artifacts from QUICKSTART.md #1

docs: remove template-generation artifacts from QUICKSTART.md

docs: remove template-generation artifacts from QUICKSTART.md #1

Workflow file for this run

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 }}