angular-cn/scripts/ci/test-aio-tools.sh

17 lines
266 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
yarn setup
yarn tools-test
)
travisFoldEnd "test.docs"