From a83372d5ee274cdc57940f42fe0baea239ac0ade Mon Sep 17 00:00:00 2001 From: Till Maas Date: Wed, 7 Apr 2021 13:12:13 +0200 Subject: [PATCH] Add markdownlint GitHub Action Setup https://github.com/marketplace/actions/markdownlint-mdl-action for automatic markdown linting. Signed-off-by: Till Maas --- .github/workflows/markdownlint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/markdownlint.yml diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml new file mode 100644 index 0000000..dce6140 --- /dev/null +++ b/.github/workflows/markdownlint.yml @@ -0,0 +1,11 @@ +--- +name: markdownlint +on: [push, pull_request] +jobs: + markdownlint: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@main + - name: Run mdl + uses: actionshub/markdownlint@main