Skip to content

Add AGENTS.md and DESIGN.md files #191

Add AGENTS.md and DESIGN.md files

Add AGENTS.md and DESIGN.md files #191

Workflow file for this run

name: Markdown Lint
on:
push:
branches:
- main
pull_request:
paths:
- '**.md'
- '.markdownlint.json'
- '.github/workflows/markdown-lint.yml'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version: "1.3.11"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run markdown linter
run: bun run lint:md