From b4196e0fa83121207bc1393f19ac8665b54ff685 Mon Sep 17 00:00:00 2001 From: offa Date: Wed, 23 Mar 2022 16:27:47 +0100 Subject: [PATCH] Add markdownlint CI (#210) --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4208018..7b12772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,3 +11,15 @@ jobs: uses: actions/checkout@main - name: Check run: ./check.sh + + markdownlint: + runs-on: ubuntu-latest + name: Markdownlint + steps: + - name: Checkout + uses: actions/checkout@main + - name: Markdownlint + uses: nosborn/github-action-markdown-cli@master + with: + files: "*.md" + config_file: .markdownlint.json