From 2c6aee88c1cfc9de5d5ce07d22d9c43104c623ba Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Tue, 10 Mar 2026 16:56:59 +0000 Subject: [PATCH] ci: add markdown linting workflow --- .github/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..0c9468e --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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' -- 2.52.0