We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc59f6e commit 162b50eCopy full SHA for 162b50e
3 files changed
.github/workflows/test.yml
@@ -431,18 +431,6 @@ jobs:
431
git config --global --add safe.directory $GITHUB_WORKSPACE
432
$GITHUB_WORKSPACE/test/scripts/shellcheck
433
434
- # Test markdown
435
- markdownlint:
436
- runs-on: ubuntu-20.04
437
- steps:
438
- - uses: actions/checkout@v2
439
-
440
- - name: Run markdownlint
441
- shell: bash
442
- run: |
443
- sudo snap install mdl
444
- $GITHUB_WORKSPACE/test/scripts/markdownlint
445
446
# Test YAML
447
yamllint:
448
runs-on: ubuntu-20.04
.pre-commit-config.yaml
@@ -5,3 +5,9 @@ repos:
5
hooks:
6
- id: trailing-whitespace
7
exclude: ^(.*).md$
8
+
9
+ - repo: https://github.com/markdownlint/markdownlint
10
+ rev: v0.11.0
11
+ hooks:
12
+ - id: markdownlint
13
+ args: ["--style", "test/scripts/mdl.style"]
test/scripts/markdownlint
0 commit comments