From 4404d12de87c7c850860479dd5b21990376ffc9b Mon Sep 17 00:00:00 2001 From: Josh Nichols Date: Fri, 3 Aug 2018 10:29:32 -0400 Subject: [PATCH] CI: Another attempt to fix release The deploy stage failed initially because npx wasn't found. This is a feature introduced in npm 5.2, which it seems node 6 doesn't have. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8b9c180ac..44725ae1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,8 @@ addons: apt: packages: - expect +before_install: + - npm install -g npm@latest before_script: - npm prune - bin/e2e-test.sh