From a3c0e131161d91d393a60e21df68ca15894af94b Mon Sep 17 00:00:00 2001 From: Kevin Ruff Date: Thu, 15 Feb 2018 10:27:24 +0100 Subject: [PATCH] Recreate travis config --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fe6b8fd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +sudo: false +language: node_js +node_js: + - "8" +cache: + directories: + - node_modules +notifications: + email: false +install: + - yarn install +script: + - yarn lint + - yarn test --coverage +branches: + except: + - /^v\d+\.\d+\.\d+$/