From 0434e0100828b1e6f9ad582702e2553975e047c4 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Wed, 25 Apr 2018 19:28:46 +0100 Subject: [PATCH] Add node 10 to the Travis test matrix (#819) Node 10 has now been released: https://nodejs.org/en/blog/release/v10.0.0/ We already have `"node": ">=8"` in `package.json` `engines` and `Node.js v8+` in the READMEs, so this should be all that needs updating. --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1140a35f3..ac8aaec1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,12 +9,15 @@ cache: yarn node_js: - '8' - '9' +- '10' before_install: # Use newer yarn than that pre-installed in the Travis image. - curl -sSfL https://yarnpkg.com/install.sh | bash - export PATH="$HOME/.yarn/bin:$PATH" install: -- yarn install --frozen-lockfile +# Remove --ignore-engines when this fixed: +# https://github.com/anodynos/upath/issues/14 +- yarn install --frozen-lockfile --ignore-engines - yarn link:all script: - yarn validate:eslintrc