From 62cab3ac2c776bea5d3694efddc0549a4134c2bb Mon Sep 17 00:00:00 2001 From: koalyptus Date: Sun, 15 Apr 2018 22:32:59 +1000 Subject: [PATCH] Add git config to before_script in travis yaml --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5fcc6033..fa7c9d35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ node_js: before_script: - npm install grunt-cli -g - npm install codecov -g +- git config --global user.email "builds@travis-ci.com" +- git config --global user.name "Travis CI" script: - npm test - npm run codecov