This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit 39cdf61c342d24832254de1a7844b4b6b35989a3 Author: Randall Leeds <[email protected]> AuthorDate: Thu May 14 22:58:28 2020 -0700 Separate lint and test make targets --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 498828b..982f24a 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,14 @@ clean: @yarn run clean .PHONY: check -check: build +check: lint test + +.PHONY: lint +lint: build + @yarn lint + +.PHONY: test +test: build @yarn test ifeq ($(vsn_tag),)
