From bfbb90c0dc116319dc95bb1108f683d612bee1ba Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Wed, 31 May 2017 18:50:42 +0200 Subject: [PATCH] add test command to CI build --- _ci/build.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/_ci/build.sh b/_ci/build.sh index ba86a7e..a5f325e 100755 --- a/_ci/build.sh +++ b/_ci/build.sh @@ -2,6 +2,21 @@ set -e; +echo "$(tput setaf 136)" +echo "=============================================" +echo " Starting tests " +echo "=============================================" +echo "$(tput sgr0)" # reset + +npm test + +echo "$(tput setaf 64)" # green +echo "---------------------------------------------" +echo " ✓ done testing" +echo "---------------------------------------------" +echo "$(tput sgr0)" # reset + + echo "$(tput setaf 136)" echo "=============================================" echo " Starting build "