2017-03-01 17:39:37 -05:00
|
|
|
#!/bin/bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
|
2017-03-07 04:36:41 -05:00
|
|
|
# Set up env
|
2017-05-12 04:15:08 -04:00
|
|
|
source "`dirname $0`/_env.sh"
|
2017-03-01 17:39:37 -05:00
|
|
|
|
|
|
|
# Test `scripts-js/`
|
2017-05-12 15:07:51 -04:00
|
|
|
(
|
|
|
|
cd "$SCRIPTS_JS_DIR"
|
2017-10-19 05:19:45 -04:00
|
|
|
yarn install --frozen-lockfile --non-interactive
|
2017-05-12 15:07:51 -04:00
|
|
|
yarn test
|
|
|
|
)
|