Skip to content

Trim AGENTS.md to align with best practices (369 → 122 lines) #71

Trim AGENTS.md to align with best practices (369 → 122 lines)

Trim AGENTS.md to align with best practices (369 → 122 lines) #71

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