summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorClaudius2019-05-12 10:01:38 +0200
committerClaudius2019-05-13 19:37:21 +0200
commit806ebe6e1abea47583ec57b6811b67958a2b3369 (patch)
tree88277eada4ae763feed35e2ca38f1616a280314b /.travis.yml
parent4833f300c527b96cc5d6d16c605df8cf04d06c1d (diff)
drop node 6 support
We will no longer test on node6 and instead focus on 8+. This won't break node6 immediately, but we will no longer go out of our way supporting a version that does not receive security updates. Signed-off-by: Claudius <opensource@amenthes.de>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index a2fce834..a5c50dee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,25 +4,25 @@ cache: yarn
env:
global:
- CXX=g++-4.8
- - YARN_VERSION=1.15.2
+ - YARN_VERSION=1.16.0
jobs:
include:
- env: task=npm-test
node_js:
- - 6
+ - 8
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
- env: task=npm-test
node_js:
- - 8
+ - 10
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
- env: task=npm-test
node_js:
- - 10
+ - 12
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"