1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-21 17:26:55 +01:00

add test command to CI build

This commit is contained in:
Matthias Kretschmann 2017-05-31 18:50:42 +02:00
parent 03b01a57fa
commit bfbb90c0dc
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC

View File

@ -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 "