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 2424 run : yarn lint
2525
2626 - name : Run Tests
27- run : yarn test:ci
27+ run : yarn test
2828
2929 - name : Coveralls
3030 uses : coverallsapp/github-action@master
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ module.exports = {
44 '^.+\\.ts?$' : 'ts-jest' ,
55 } ,
66 transformIgnorePatterns : [ 'node_modules/(?!(node-fetch|fetch-blob)/)' ] ,
7+ collectCoverageFrom : [ './src/*.js' ] ,
78 coverageThreshold : {
89 global : {
910 branches : 50 ,
10- functions : 80 ,
11- lines : 85 ,
11+ functions : 75 ,
12+ lines : 75 ,
1213 } ,
1314 } ,
1415} ;
Original file line number Diff line number Diff line change 1919 "build" : " yarn clean && yarn babel && rollup -c" ,
2020 "babel" : " babel src -d build --copy-files --no-copy-ignored" ,
2121 "lint" : " eslint src/" ,
22- "test:ci" : " yarn test --coverage --coverageReporters=text-lcov" ,
2322 "test" : " jest"
2423 },
2524 "devDependencies" : {
You can’t perform that action at this time.
0 commit comments