mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Generate the docs with `yarn docs`. Test the doc generation code with `yarn docs-test` The docs are automatically built as part of the `yarn build` task, so there is no need to rebuild them in the test_aio.sh file
15 lines
250 B
Bash
Executable file
15 lines
250 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 docs-test
|
|
)
|
|
travisFoldEnd "test.docs"
|