mirror of
https://github.com/thumbsup/thumbsup
synced 2024-11-09 13:10:28 +00:00
03a9c9a319
Every theme is made of { Handlebars + Less + Partials + Helpers + Public }
24 lines
429 B
Bash
Executable File
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 "=================================="
|