From ed041ac1e93f9359021589111b4a36e9c9b76a52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raphael=20von=20der=20Gr=C3=BCn?= Date: Mon, 11 Nov 2019 13:37:54 +0100 Subject: [PATCH] ci(travis): run codecov using npx in after_success (#106) --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index af508207..3f32cbef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,11 +10,10 @@ node_js: install: - npm install - - npm install -g codecov script: - npm test - npm run cover -after_script: - - codecov +after_success: + - npx codecov