From d09f2b4170a20e3a7cd8d83d97143257786577f2 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Mon, 30 Sep 2019 13:14:18 -0400 Subject: [PATCH] build: build docs on Travis PR-URL: https://github.com/nodejs/node/pull/29783 Reviewed-By: Ruben Bridgewater Reviewed-By: Rich Trott Reviewed-By: Trivikram Kamat --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e3cf371831765a..93456573438b1c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,14 +74,14 @@ jobs: - make -j1 V=1 test/addons/.buildstamp test/js-native-api/.buildstamp test/node-api/.buildstamp - python tools/test.py -j 2 -p dots --report --mode=release --flaky-tests=dontcare addons js-native-api node-api - - name: "Linter" + - name: "Run Linter and Build Docs" language: node_js node_js: "node" install: - pyenv global ${PYTHON_VERSION} - make lint-py-build || true script: - - NODE=$(which node) make lint lint-py + - NODE=$(which node) make lint-py doc-only lint - name: "First commit message adheres to guidelines at https://goo.gl/p2fr5Q" if: type = pull_request