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

16 lines
251 B
Bash
Raw Permalink 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-07-28 11:57:44 +01:00
yarn tools-test
)
travisFoldEnd "test.docs"