From 4a749531e2574e3bf2ed4ea0cffd6e2185bad524 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 13 Aug 2018 08:47:45 +0200 Subject: [PATCH] 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 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Richard Lau --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1dc316feb79132..4d6aa0e50f8968 100644 --- a/Makefile +++ b/Makefile @@ -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