mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
17 lines
271 B
Bash
Executable File
17 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "--- Loading environment"
|
|
source ./script/ci/includes.sh
|
|
load_environment
|
|
|
|
echo "--- Verifying branch is based on current master"
|
|
exit_unless_master_merged
|
|
|
|
echo "--- Bundling"
|
|
bundle install
|
|
|
|
echo "--- Running tests"
|
|
bundle exec rake karma:run
|