Selaa lähdekoodia

added .travis.yml

REJack 5 vuotta sitten
vanhempi
commit
08c597d413
1 muutettua tiedostoa jossa 22 lisäystä ja 0 poistoa
  1. 22 0
      .travis.yml

+ 22 - 0
.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'