diff --git a/script/cibuild b/script/cibuild new file mode 100755 index 00000000..b90c5aae --- /dev/null +++ b/script/cibuild @@ -0,0 +1,12 @@ +#!/bin/bash + +# script/cibuild: Run CI related checks and tests + +# If a command fails, exit the script +set -e + +# Ensure we are in the app root directory (not the /script directory) +cd "$(dirname "${0}")/.." + +# Run lint/style checks and unit tests +script/test