Commit 48db3e1 1 parent 0b9cf42 commit 48db3e1 Copy full SHA for 48db3e1
File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,16 @@ jobs:
32
32
33
33
lint-md :
34
34
needs : detect-changes
35
- if : contains(needs.detect-changes.outputs.changes, 'md')
35
+ if : |
36
+ contains(needs.detect-changes.outputs.changes, 'md')
37
+ || contains(needs.detect-changes.outputs.changes, 'build')
36
38
uses : ./.github/workflows/markdownlint.yml
37
39
38
40
lint-dotnet-format :
39
41
needs : detect-changes
40
- if : contains(needs.detect-changes.outputs.changes, 'code')
42
+ if : |
43
+ contains(needs.detect-changes.outputs.changes, 'code')
44
+ || contains(needs.detect-changes.outputs.changes, 'build')
41
45
uses : ./.github/workflows/dotnet-format.yml
42
46
43
47
build-test-solution-stable :
Original file line number Diff line number Diff line change 13
13
- name : check out code
14
14
uses : actions/checkout@v4
15
15
16
- - name : install markdownlint-cli
17
- run : sudo npm install -g markdownlint-cli
18
-
19
16
- name : run markdownlint
20
- run : markdownlint .
17
+ uses :
DavidAnson/[email protected]
18
+ with :
19
+ globs : |
20
+ **/*.md
21
+ !.github/**/*.md
You can’t perform that action at this time.
0 commit comments