From 08c597d4135f8734a6850000f9e214177a3fdad0 Mon Sep 17 00:00:00 2001 From: REJack Date: Thu, 31 Oct 2019 12:10:29 +0100 Subject: [PATCH] added .travis.yml --- .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 000000000..ab4f8c4f0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: node_js + +node_js: + - 8 + - 9 + - 10 + - 11 + - 12 + +env: + - INSTALL=yarn + - INSTALL=npm + +matrix: + fast_finish: true + +install: + - if [ "yarn" == $INSTALL ]; then yarn install; fi + - if [ "npm" == $INSTALL ]; then npm install; fi + +script: + - echo 'Tests must be configured'