mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
12 lines
147 B
Bash
Executable File
12 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 -
|