2017-03-07 18:24:45 -08:00

13 lines
171 B
Bash
Executable File

#!/bin/bash
set -eux -o pipefail
# Constants
SCRIPTS_JS_DIR="`dirname $0`/dockerbuild/scripts-js"
# Test `scripts-js/`
cd "$SCRIPTS_JS_DIR"
yarn install
yarn test
cd -