2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-19 09:26:04 +00:00
thumbsup/scripts/cibuild

18 lines
335 B
Plaintext
Raw Normal View History

#!/bin/bash
# Fail the build on any error
set -eou pipefail
echo "--- Run unit tests"
npm test
echo "--- Verify lightgallery dependency is built in"
grep \"lightgallery\" package.json 1>/dev/null
echo "--- Comparing gallery snapshot"
./test-integration/test
echo "================"
echo "Build successful"
echo "================"