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