diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2020-03-28 17:03:11 +1000 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2020-03-28 17:03:11 +1000 |
commit | f8f63d4f976b7ed87d5c6fafcc4c32d9c6d9a270 (patch) | |
tree | 4baf86c379d398d5a4781490f0933e897b2799c1 | |
parent | ba2948bfad00906ffa3ba5ea7ff15ac0be517445 (diff) | |
download | svg.js-f8f63d4f976b7ed87d5c6fafcc4c32d9c6d9a270.tar.gz svg.js-f8f63d4f976b7ed87d5c6fafcc4c32d9c6d9a270.zip |
fix travis config
-rw-r--r-- | .travis.yml | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml index 2a833bb..8c6ab1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,14 @@ language: node_js node_js: - - "stable" -script: - - npm run build - - npm run test -# - npm run test:ci -# - cat coverage/firefox/lcov.info | node_modules/.bin/coveralls + - "stable" +services: + - xvfb addons: - firefox: "latest" - chrome: "stable" -# hosts: -# - karmalocal.com -before_install: - # Start a display server where all graphical operations happens in memory - - export DISPLAY=:99.0 - - sh -e /etc/init.d/xvfb start -#cache: -# directories: -# - node_modules + firefox: latest + chrome: stable +install: + - npm install + - npm run build +script: + - npm run test + - npm run test:es6
\ No newline at end of file |