File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 21
21
uses : ./.github/actions/setup
22
22
23
23
- name : Basic Checks
24
- run : pnpm check
24
+ run : |
25
+ pnpm check
26
+ pnpm lint
25
27
26
28
builds :
27
29
name : Builds
Original file line number Diff line number Diff line change 9
9
"check" : " check && pnpm -r --sequential run check" ,
10
10
"test" : " pnpm -r --sequential run test run" ,
11
11
"test:coverage" : " pnpm -r --sequential run test:coverage" ,
12
- "markdownlint" : " markdownlint '**/*.md' -i ./docs --fix || true && markdownlint --config .markdownlint.docs.json 'docs/**/*.md' --fix || true" ,
12
+ "lint:prettier" : " prettier --check ." ,
13
+ "lint:docs" : " markdownlint --config .markdownlint.docs.json 'docs/**/*.md'" ,
14
+ "lint:md" : " markdownlint '**/*.md' -i ./docs" ,
15
+ "lint:markdown" : " pnpm run lint:docs && pnpm run lint:md" ,
16
+ "format:markdown" : " pnpm run lint:markdown --fix" ,
17
+ "format:prettier" : " prettier --write ." ,
18
+ "lint" : " pnpm run lint:prettier && pnpm run lint:markdown" ,
19
+ "format" : " pnpm run format:prettier && pnpm run format:markdown" ,
13
20
"prepare" : " simple-git-hooks" ,
14
21
"prepublish" : " pnpm -s build" ,
15
22
"docs:gen" : " typedoc --options docs/typedoc.json" ,
You can’t perform that action at this time.
0 commit comments