File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ jobs:
202
202
run : docker run --rm -v .:/app --workdir=/app node:18 npm install
203
203
204
204
- name : Markdown lint
205
- run : docker run --rm -v .:/app --workdir=/app node:18 npm run check- coding-standards
205
+ run : docker run --rm -v .:/app --workdir=/app node:18 npm run coding-standards-check
206
206
207
207
apispec :
208
208
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ To attempt to automatically fix coding style issues
210
210
211
211
` ` ` shell
212
212
docker run --rm -v .:/app --workdir=/app node:18 npm install
213
- docker run --rm -v .:/app --workdir=/app node:18 npm run apply- coding-standards
213
+ docker run --rm -v .:/app --workdir=/app node:18 npm run coding-standards-apply
214
214
` ` `
215
215
216
216
# # Tests
Original file line number Diff line number Diff line change 6
6
},
7
7
"scripts" : {
8
8
"coding-standards-check/markdownlint" : " markdownlint --ignore vendor --ignore node_modules '**/*.md'" ,
9
- "coding-standards-check" : " yarn coding-standards-check/markdownlint" ,
9
+ "coding-standards-check" : " npm run coding-standards-check/markdownlint" ,
10
10
"coding-standards-apply/markdownlint" : " markdownlint --ignore vendor --ignore node_modules '**/*.md' --fix" ,
11
- "coding-standards-apply" : " yarn coding-standards-apply/markdownlint"
11
+ "coding-standards-apply" : " npm run coding-standards-apply/markdownlint"
12
12
}
13
13
}
You can’t perform that action at this time.
0 commit comments