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 f6eec27 commit 97b1082Copy full SHA for 97b1082
Taskfile.yml
@@ -37,8 +37,12 @@ tasks:
37
# We use a block scalar (https://yaml-multiline.info/#block-scalars) here to make escaping (a little) easier.
38
GLOB: >-
39
{{.CLI_ARGS | default "'**/*.md'"}}
40
+ # I don't (yet) know why, but `itkdev/markdownlint` has an issue with
41
+ # permissions when running in GitHub Actions. Therefore we use
42
+ # `peterdavehello/markdownlint`
43
+ # (https://hub.docker.com/r/peterdavehello/markdownlint)
44
MARKDOWNLINT_COMMAND: >-
- docker run --rm --volume "$PWD":/md itkdev/markdownlint markdownlint --dot {{.GLOB}}
45
+ docker run --rm --volume "$PWD":/md peterdavehello/markdownlint markdownlint --dot {{.GLOB}}
46
47
lint:shell-script:
48
desc: "Lint shell scripts"
0 commit comments