From 679cfd8877d1cbc110aec69273b9bbe0f47e0aed Mon Sep 17 00:00:00 2001 From: Muhammad Date: Mon, 22 Jun 2026 10:34:28 -0700 Subject: [PATCH] Add GitHub Actions workflow for linting Markdown --- .github/workflows/lint.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..1bc2f4d --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,19 @@ +name: Lint Markdown + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Install markdownlint + run: npm install -g markdownlint-cli + + - name: Run markdownlint + run: markdownlint '**/*.md' --ignore node_modules