mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
147 B
Bash
Executable file
11 lines
147 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
# Set up env
|
|
source "`dirname $0`/env.sh"
|
|
|
|
# Test `scripts-js/`
|
|
cd "$SCRIPTS_JS_DIR"
|
|
yarn install
|
|
yarn test
|
|
cd -
|