summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schauer Marin Rodrigues <josch@debian.org>2021-12-11 00:07:38 +0100
committerJohannes Schauer Marin Rodrigues <josch@debian.org>2021-12-11 00:07:47 +0100
commit2183c0bbf856d40a2be8749f0d404c87c177a5c8 (patch)
tree13261e11e545b896ff5bcb32436d8766b62d1f2f
parentb81dd8c2fdf6d06538c2d1215758a6dd55d938bf (diff)
add .travis.yml to make dgit happy
-rw-r--r--.travis.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a77d3b9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,13 @@
+language: node_js
+
+sudo: false
+
+node_js:
+ - "11"
+ - "10"
+ - "8"
+ - "6"
+
+script:
+ - npm test
+ - if [[ ${TRAVIS_NODE_VERSION} == "8" ]]; then npm run coverage; fi;