From a5127aa2c426fc3f861be949385dac6eff171c2e Mon Sep 17 00:00:00 2001 From: Bouncey Date: Sat, 16 Feb 2019 13:58:43 +0000 Subject: [PATCH] fix(ci): There is no "afterInstall" hook --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cfaa723236..90e7c62863 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,6 @@ before_install: install: npm ci -after_install: node tools/scripts/ensure-path-migration-map.js - before_script: - git config --global user.email team+camperbot@freeCodeCamp.org - git config --global user.name "CamperBot" @@ -26,7 +24,9 @@ before_script: jobs: include: - stage: Lint javaScript - script: npm run lint + script: + - npm run ensure-env + - npm run lint - stage: Unit and Integration tests script: npm test