ci: Possible fix for 127 error travisCI

master
Viraj Trivedi 6 years ago
parent 5acac148e9
commit f78cf3564a

@ -8,6 +8,15 @@ branches:
except: except:
- /^v\d+\.\d+\.\d+$/ - /^v\d+\.\d+\.\d+$/
install:
- travis_retry npm install
script:
- npm run test
after_success:
- npm run codecov
jobs: jobs:
include: include:
- stage: release - stage: release
@ -19,4 +28,3 @@ jobs:
- npm install - npm install
script: script:
- npm run semantic-release - npm run semantic-release
- npm run codecov

@ -72,6 +72,8 @@
}, },
"testMatch": [ "testMatch": [
"**/__tests__/*.+(ts|tsx|js)" "**/__tests__/*.+(ts|tsx|js)"
] ],
"coverageDirectory": "./coverage/",
"collectCoverage": true
} }
} }

Loading…
Cancel
Save