2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-09 13:10:28 +00:00
thumbsup/scripts/cibuild
Romain 03a9c9a319 refactor: themes are now standalone folders, to prepare for external loading
Every theme is made of { Handlebars + Less + Partials + Helpers + Public }
2018-06-01 23:49:53 +02:00

24 lines
429 B
Bash
Executable File

#!/bin/bash
# Fail the build on any error
set -eou pipefail
trap failure ERR
function failure {
echo ""
echo "=================================="
echo " ✘ Build failed"
echo "=================================="
}
echo "Run unit tests"
npm test
echo "Comparing gallery snapshot"
scripts/verify
echo ""
echo "=================================="
echo " ✔ Build successful"
echo "=================================="