File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"hooks" : {
3
3
"commit-msg" : " commitlint -E HUSKY_GIT_PARAMS" ,
4
- "pre-commit" : " npm run lint:dts && npm test && lint-staged"
4
+ "pre-commit" : " npm run lint:dts && npm run test:ci && lint-staged"
5
5
}
6
6
}
Original file line number Diff line number Diff line change 8
8
- npx commitlint --from=HEAD~1
9
9
- npm run lint
10
10
- npm run lint:dts
11
- - npm test
11
+ - npm run test:ci
12
12
- npm run build
13
13
- npm run benchmark
14
14
after_success :
Original file line number Diff line number Diff line change 11
11
"lint" : " eslint --ignore-path .gitignore --ignore-pattern /examples/ ." ,
12
12
"lint:dts" : " dtslint ." ,
13
13
"lint:fix" : " npm run lint -- --fix" ,
14
- "prepublishOnly" : " npm run lint && npm run lint:dts && npm test && npm run clean && npm run build" ,
14
+ "prepublishOnly" : " npm run lint && npm run lint:dts && npm run test:ci && npm run clean && npm run build" ,
15
15
"release" : " standard-version --no-verify" ,
16
16
"test" : " jest --coverage" ,
17
+ "test:ci" : " npm test -- --ci" ,
17
18
"test:watch" : " npm test -- --watch"
18
19
},
19
20
"repository" : {
You can’t perform that action at this time.
0 commit comments