From e9f7228ecbdb400f28c3aceb2e33297a08e1e8ae Mon Sep 17 00:00:00 2001 From: Anudhyan Datta <127120520+Anudhyan@users.noreply.github.com> Date: Sat, 1 Nov 2025 08:26:48 +0000 Subject: [PATCH] CI: Add markdown linter (markdownlint) --- .github/workflows/markdown-lint.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/markdown-lint.yml diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml new file mode 100644 index 00000000..a879044c --- /dev/null +++ b/.github/workflows/markdown-lint.yml @@ -0,0 +1,20 @@ +name: Lint Markdown + +on: + pull_request: + push: + paths: + - '**/*.md' + - '.github/**' + +jobs: + markdown-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Run markdownlint + uses: davidanson/markdownlint-action@v1 + with: + config: | + default: true