mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
14 lines
364 B
Bash
Executable file
14 lines
364 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
MODE=$1
|
|
|
|
echo =============================================================================
|
|
# go to project dir
|
|
SCRIPT_DIR=$(dirname $0)
|
|
cd $SCRIPT_DIR/../..
|
|
|
|
./scripts/browserstack/start_tunnel.sh
|
|
./scripts/browserstack/waitfor_tunnel.sh
|
|
./node_modules/.bin/gulp build.js.dev
|
|
./node_modules/.bin/gulp test.unit.js.browserstack/ci --mode=$MODE
|