We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 260ae6f commit c3d2250Copy full SHA for c3d2250
.github/workflows/test.yml
@@ -61,6 +61,12 @@ jobs:
61
- name: check
62
run: task check
63
64
+ - name: Publish Test Results
65
+ if: always()
66
+ uses: EnricoMi/publish-unit-test-result-action@v2
67
+ with:
68
+ files: "dist/md-lint-issues.xml"
69
+
70
- name: build
71
run: task clean build
72
.pre-commit-config.yaml
@@ -5,7 +5,7 @@ repos:
5
hooks:
6
7
- id: markdownlint
8
- name: check:markdownlint
9
- entry: task check:markdownlint
+ name: check:rumdl
+ entry: task check:rumdl
10
language: python
11
pass_filenames: false
Taskfile.yml
@@ -51,6 +51,7 @@ tasks:
51
desc: Run complete test suite
52
deps:
53
- check:links
54
+ - check:rumdl
55
56
check:links:
57
desc: Check outgoing links
0 commit comments