Files
angular-docs-cn/scripts/ci/test-docs.sh
T

16 lines
250 B
Bash
Raw Normal View History

2017-01-25 22:27:05 +00:00
#!/usr/bin/env bash
set -u -e -o pipefail
2017-01-25 22:27:05 +00:00
# Setup environment
readonly thisDir=$(cd $(dirname $0); pwd)
source ${thisDir}/_travis-fold.sh
2017-01-25 22:27:05 +00:00
travisFoldStart "test.docs"
(
cd ${PROJECT_ROOT}/aio
2017-03-03 11:18:15 +00:00
yarn docs-test
)
travisFoldEnd "test.docs"