mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
15 lines
261 B
Bash
Executable file
15 lines
261 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -u -e -o pipefail
|
|
|
|
# Setup environment
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
source ${thisDir}/_travis-fold.sh
|
|
|
|
|
|
travisFoldStart "test.docs"
|
|
(
|
|
cd ${PROJECT_ROOT}/aio
|
|
$(npm bin)/gulp docs-test
|
|
)
|
|
travisFoldEnd "test.docs"
|