From efeb2f55c33e688065aa53dde87f32f91051eaa4 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 22 Aug 2018 22:20:01 -0700 Subject: [PATCH] Run lint/flow/doc/examples in CI --- web3.js/.travis.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/web3.js/.travis.yml b/web3.js/.travis.yml index b9a5898c9a..3cf08d0664 100644 --- a/web3.js/.travis.yml +++ b/web3.js/.travis.yml @@ -3,9 +3,13 @@ node_js: - "lts/*" - "node" -before_script: npm run lint -script: npm run test -after_success: npm run coveralls +script: + - npm run doc + - npm run flow + - npm run lint + - for example in examples/*.js; do node $example; done +after_success: + - npm run coveralls before_deploy: - rm -rf deploy