From c045771b76353704dd8403b9c8e895362c8c9e06 Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Thu, 27 Oct 2022 16:01:54 +0000 Subject: [PATCH] Run js-lint as part of the full test target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fec11675f..6703690cc 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ generate-version-file: ## Generates the app version file @echo -e "__git_commit__ = \"${GIT_COMMIT}\"\n__time__ = \"${DATE}\"" > ${APP_VERSION_FILE} .PHONY: test -test: py-lint py-test js-test ## Run tests +test: py-lint py-test js-lint js-test ## Run tests .PHONY: py-lint py-lint: ## Run python linting scanners