Skip to content

Commit 5f9845c

Browse files
committed
continue pipeline despite rumdl issues
1 parent 7c37dc6 commit 5f9845c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Taskfile.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ tasks:
194194
} | xargs -0 poetry run rumdl --config .markdownlint.jsonc check --fix
195195
196196
check:rumdl:
197-
desc: run rumdl (md-linter) for style issues
197+
desc: run rumdl (md-linter) for style issues without failing the check stage
198198
cmds:
199199
- mkdir -p ./dist
200200
- rm -f ./dist/md-lint-issues.xml
@@ -213,4 +213,7 @@ tasks:
213213
214214
# no recursion (top-level only)
215215
find . -maxdepth 1 -type f -name '*.md' -print0
216-
} | xargs -0 poetry run rumdl --config .markdownlint.jsonc check
216+
} | xargs -0 poetry run rumdl --config .markdownlint.jsonc check || {
217+
echo "rumdl reported markdown style issues; continuing without failing the check stage."
218+
true
219+
}

0 commit comments

Comments
 (0)