File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
strategy :
16
16
matrix :
17
- node-version : [10.x, 12.x, 14.x]
17
+ node-version : [12.x, 14.x]
18
18
19
19
steps :
20
20
- uses : ' actions/checkout@v2'
26
26
27
27
- run : ' npm ci'
28
28
- run : ' npm run lint'
29
+ - run : ' npm run markdownlint'
29
30
- run : ' npm run build'
30
31
- run : ' DISABLE_LOGGING=1 npm run cover'
31
32
- run : ' npx nyc report --reporter=lcov > coverage.lcov && npx codecov'
Original file line number Diff line number Diff line change 2
2
. " $( dirname " $0 " ) /_/husky.sh"
3
3
4
4
npm run lint
5
+ npm run markdownlint
Original file line number Diff line number Diff line change 1
1
{
2
2
"default" : true ,
3
- "MD013" : false
3
+ "MD013" : false ,
4
+ "MD024" : false
4
5
}
Original file line number Diff line number Diff line change 6
6
"build" : " tsc" ,
7
7
"test" : " mocha test/**/*.spec.ts" ,
8
8
"cover" : " nyc mocha test/**/*.spec.ts" ,
9
- "lint" : " tslint -c tslint.json --project tsconfig.json && npm run markdownlint " ,
9
+ "lint" : " tslint -c tslint.json --project tsconfig.json" ,
10
10
"markdownlint" : " markdownlint '**/*.md' --ignore node_modules" ,
11
- "release" : " release-it --ci " ,
11
+ "release" : " release-it" ,
12
12
"postinstall" : " husky install" ,
13
13
"prepublishOnly" : " pinst --disable && npm run build" ,
14
14
"postpublish" : " pinst --enable"
56
56
"hooks" : {
57
57
"before:init" : [
58
58
" npm run lint" ,
59
+ " npm run markdownlint" ,
59
60
" npm run build" ,
60
61
" npm run test"
61
62
]
You can’t perform that action at this time.
0 commit comments