summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2022-01-09 19:12:43 -0500
committerGitHub <noreply@github.com>2022-01-09 16:12:43 -0800
commite27aaab6cb5278ce312a673852bc962afa1ae233 (patch)
treef60863e357a9f0a6bf7cc7627e9ae0fc7594d81b
parenta038c8fb26419b35e2524564f7852c899ddd2251 (diff)
downloadasync-e27aaab6cb5278ce312a673852bc962afa1ae233.tar.gz
chore: remove unused Travis CI config (#1781)
-rw-r--r--.travis.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index d79da9b..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-sudo: false
-dist: xenial
-language: node_js
-node_js:
- - "10"
- - "12"
-
-services:
- - xvfb
-
-matrix:
- include:
- - node_js: "12"
- addons:
- firefox: "60.0"
- env: BROWSER=true MAKE_TEST=true
-env:
- matrix: BROWSER=false MAKE_TEST=false
-
-after_success: npm run coveralls
-
-
-# Needed to run Karma with Firefox on Travis
-# http://karma-runner.github.io/0.13/plus/travis.html
-before_script:
- - sudo apt-get install -y make
- - make --version
-
-script:
- - "[ $BROWSER == true ] || npm test"
- # ensure buildable
- - "[ $MAKE_TEST == false ] || make -j 4"
- # test in firefox
- - "[ $BROWSER == false ] || npm run mocha-browser-test"