sudo: false dist: trusty language: node_js node_js: - "10" addons: chrome: stable before_install: - | if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/' then echo "Only docs were updated, stopping build process." exit fi after_success: - | if [ $TRAVIS_PULL_REQUEST = "false" ]; then npm install codecov cat ./coverage/lcov.info | ./node_modules/.bin/codecov fi