diff --git a/.travis.yml b/.travis.yml index 6cd6d26c59..39ea1505fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,5 +62,6 @@ after_script: # After a successful build and test (see 'script'), send code coverage reports to codecov.io # These code coverage reports are generated by the codecov node module in our package.json +# NOTE: As there's no need to send coverage multiple times, we only run this for one version of node. after_success: - - codecov + - if [ "$TRAVIS_NODE_VERSION" = "12" ]; then codecov; fi