13 lines
171 B
Bash
Executable File
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 -
|