chore(jenkins): remove path to grunt

grunt is installed globally on jenkins so we can just use it directly.
This commit is contained in:
Peter Bacon Darwin
2016-11-28 10:45:23 +00:00
parent d003ec1d41
commit f54e9242fc
2 changed files with 6 additions and 8 deletions
+5 -6
View File
@@ -21,22 +21,21 @@ rm -f angular.js.size
# BUILD #
yarn
node_modules/.bin/grunt ci-checks package --no-color
grunt ci-checks package --no-color
mkdir -p test_out
# UNIT TESTS #
node_modules/.bin/grunt test:unit --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
grunt test:unit --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
# END TO END TESTS #
node_modules/.bin/grunt test:ci-protractor
grunt test:ci-protractor
# DOCS APP TESTS #
node_modules/.bin/grunt test:docs --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
grunt test:docs --browsers="$BROWSERS" --reporters=dots,junit --no-colors --no-color
# Promises/A+ TESTS #
node_modules/.bin/grunt test:promises-aplus --no-color
grunt test:promises-aplus --no-color
# CHECK SIZE #
+1 -2
View File
@@ -38,8 +38,7 @@ function build {
source ./init-node.sh
cd ../..
yarn
node_modules/.bin/grunt ci-checks package --no-color
grunt ci-checks package --no-color
cd $SCRIPT_DIR
}