Skip to content

Add human-facing PRD workflow guide #34

Add human-facing PRD workflow guide

Add human-facing PRD workflow guide #34

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
validate-structure:
name: Validate Structure
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bash .github/scripts/validate-structure.sh
markdownlint:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v19
link-check:
name: Link Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@v2
with:
args: --no-progress --offline --config .lychee.toml '**/*.md'
fail: true