mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit includes the following changes: * CLI version information is read from the CLI package from which we read the help files. * CLI API pages now contain GH links * line numbers are not shown in GH links, if the doc does not have a truthy `startingLine` value. This allows us to remove hard coded checks for `guide` pages * content pages and CLI api docs no longer have a `startingLine` * the hard-coded `packages` path segment has been removed from the templates; instead we now only use the `realProjectRelativePath`. * the `realProjectRelativePath` has been updated accordingly for API and CLI API docs. PR Close #26515
16 lines
266 B
Bash
Executable file
16 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"
|