Skip to content

Commit fad4c13

Browse files
authored
Merge pull request #4160 from ralfhandl/main-validate-markdown
Use "future-proof" glob pattern for markdownlint
2 parents cc25d27 + 8bff2ce commit fad4c13

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/validate-markdown.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,5 @@ jobs:
2929
node-version: '20.x'
3030
- name: Validate markdown
3131
run: npx --yes mdv versions/3.*.md
32-
- name: Lint markdown v3.0.4
33-
run: npx --yes markdownlint-cli --config .markdownlint.yaml versions/3.0.4.md
34-
- name: Lint markdown v3.1.1
35-
run: npx --yes markdownlint-cli --config .markdownlint.yaml versions/3.1.1.md
32+
- name: Lint markdown 3.0.4, 3.1.1, and later
33+
run: npx --yes markdownlint-cli --config .markdownlint.yaml versions/3.0.4.md versions/3.1.[^0].md versions/3.[2-9].*.md

0 commit comments

Comments
 (0)