ci: add markdown linting workflow #1

Merged
ghost merged 2 commits from feature/add-ci into main 2026-03-11 01:52:58 +00:00
+19
View File
@@ -0,0 +1,19 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: local-ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v16
with:
globs: '**/*.md'