File tree 2 files changed +18
-6
lines changed
2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
<!-- DO NOT EDIT THIS FILE!
2
2
3
- It was automatically created at 2025-05-05T10:20:02 +02:00
3
+ It was automatically created at 2025-05-06T10:12:47 +02:00
4
4
by task/scripts/github-documentation-update
5
5
based on /app/task/scripts/../templates/github-actions-templates.md
6
6
-->
@@ -142,14 +142,20 @@ Validates styles files.
142
142
143
143
### Markdown
144
144
145
- Uses [ itkdev/markdownlint] ( https://hub.docker.com/r/itkdev/markdownlint ) to
146
- link all Markdown files (` **/*.md ` ) in the project.
145
+ Lints Markdown files (` **/*.md ` ) in the project.
147
146
148
147
[ markdownlint-cli configuration
149
148
files] ( https://github.com/igorshubovych/markdownlint-cli?tab=readme-ov-file#configuration ) ,
150
149
` .markdownlint.jsonc ` and ` .markdownlintignore ` , control what is actually
151
150
linted and how.
152
151
152
+ #### Assumptions
153
+
154
+ 1 . A docker compose service named ` markdownlint ` for running ` markdownlint `
155
+ (from
156
+ [ markdownlint-cli] ( https://github.com/igorshubovych/markdownlint-cli ) )
157
+ exists.
158
+
153
159
---
154
160
155
161
[ github/workflows/symfony/php.yaml] ( github/workflows/symfony/php.yaml )
Original file line number Diff line number Diff line change 4
4
5
5
# ## ### Markdown
6
6
# ##
7
- # ## Uses [itkdev/markdownlint](https://hub.docker.com/r/itkdev/markdownlint) to
8
- # ## link all Markdown files (`**/*.md`) in the project.
7
+ # ## Lints Markdown files (`**/*.md`) in the project.
9
8
# ##
10
9
# ## [markdownlint-cli configuration
11
10
# ## files](https://github.com/igorshubovych/markdownlint-cli?tab=readme-ov-file#configuration),
12
11
# ## `.markdownlint.jsonc` and `.markdownlintignore`, control what is actually
13
12
# ## linted and how.
13
+ # ##
14
+ # ## #### Assumptions
15
+ # ##
16
+ # ## 1. A docker compose service named `markdownlint` for running `markdownlint`
17
+ # ## (from
18
+ # ## [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli))
19
+ # ## exists.
14
20
15
21
name : Markdown
16
22
31
37
uses : actions/checkout@v4
32
38
33
39
- run : |
34
- docker run --rm --volume "$PWD":/md itkdev/ markdownlint '**/*.md'
40
+ docker compose run --rm markdownlint markdownlint '**/*.md'
You can’t perform that action at this time.
0 commit comments