We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 23c0d59 + a353c1c commit 4009276Copy full SHA for 4009276
scripts/build.sh
@@ -19,10 +19,11 @@ set -ev
19
npm run lint
20
npm run test
21
22
-# if merging to master and not a pull request, execute regression tests and update docs
+# if merging to master and not a pull request, execute regression tests, create coverage report and update docs
23
if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
24
openssl aes-256-cbc -K $encrypted_b8aa0887832a_key -iv $encrypted_b8aa0887832a_iv -in key.json.enc -out key.json -d
25
- npm run regression-test
+ # create new coverage report (executes regression tests)
26
+ npm run coveralls
27
28
# generate new set of json files in docs/json/master
29
npm run docs
0 commit comments