summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-02-09 14:39:57 +0100
committerAndrej Mihajlov <and@mullvad.net>2018-02-13 12:34:50 +0100
commit6601caa56df060896515b36bcdd4a55ee542e759 (patch)
treea9393f9de3f8cd3141d0175bb1c5ffd35aa8bb67
parent53892dad2d52a709bdd20bc3268f101358f7e052 (diff)
downloadmullvadvpn-6601caa56df060896515b36bcdd4a55ee542e759.tar.xz
mullvadvpn-6601caa56df060896515b36bcdd4a55ee542e759.zip
Drop Node.js v7 from Travis since electron-mocha runs in electron environment
-rw-r--r--.travis.yml13
1 files changed, 3 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 047c274817..add321f7ea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ matrix:
node_js: '8'
cache: yarn
- install: &node_install
+ install:
- yarn install
# FIXME: Flow throws error for optional dependencies
@@ -24,20 +24,13 @@ matrix:
echo "module.exports = {};" > $FILE;
fi
done
- before_script: &node_before_script
+ before_script:
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
- script: &node_script
+ script:
- yarn run lint
- yarn run flow
- yarn test
- - language: node_js
- node_js: '7'
- cache: yarn
- install: *node_install
- before_script: *node_before_script
- script: *node_script
-
# Backend macOS
- language: rust