diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2018-08-13 08:47:45 +0200 |
---|---|---|
committer | Michaƫl Zasso <targos@protonmail.com> | 2018-09-03 17:56:23 +0200 |
commit | fd6033c341cb3ee2a3bcb785ecf068bbffb5a74a (patch) | |
tree | 7786ab90506a9f1d81341ff76434cf94f2037603 | |
parent | ed874e40d12e600c4e2d513d39e1b77478e7e9d0 (diff) | |
download | node-new-fd6033c341cb3ee2a3bcb785ecf068bbffb5a74a.tar.gz |
build: add test-doc to test target
This commit adds the test-doc target to the test recipe so that docs are
built and linters run. This used to happen but was removed at some
point.
PR-URL: https://github.com/nodejs/node/pull/22294
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -268,6 +268,7 @@ jstest: build-addons build-addons-napi ## Runs addon tests and JS tests test: all ## Runs default tests, linters, and builds docs. @echo "Build the addons before running the tests so the test results" @echo "can be displayed together" + $(MAKE) -s test-doc $(MAKE) -s build-addons $(MAKE) -s build-addons-napi $(MAKE) -s cctest |