From 242d4fe2029889ab17d3326f598ca6157f51c023 Mon Sep 17 00:00:00 2001 From: Aron Moore Date: Fri, 18 Jan 2019 10:47:29 +0000 Subject: [PATCH] ci(travis): add Travis config --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..4be2fb5a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: node_js +node_js: + - lts/* +notifications: + email: + on_success: never + on_failure: always +branches: + only: + - master +install: + - travis_retry npm install +test: + - npm test +before_deploy: + - npm run coverage +deploy: + - provider: script + skip_cleanup: true + script: npx semantic-release + on: + branch: master \ No newline at end of file