From 85d8b04a6ca3ebe906f6858e4704f4023ee1025f Mon Sep 17 00:00:00 2001 From: Tim Alby Date: Thu, 4 Jun 2020 10:19:52 +0200 Subject: [PATCH] Revert "[misc] make: ignore a lint/format task failure" This reverts commit 6daa8ff2467557f710adcddbf7277b1ce135991d. --- services/contacts/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/contacts/Makefile b/services/contacts/Makefile index 528bf7b0bd..7e0b5418ea 100644 --- a/services/contacts/Makefile +++ b/services/contacts/Makefile @@ -17,13 +17,13 @@ clean: docker rmi gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) format: - $(DOCKER_COMPOSE) run --rm test_unit npm run format || true + $(DOCKER_COMPOSE) run --rm test_unit npm run format format_fix: $(DOCKER_COMPOSE) run --rm test_unit npm run format:fix lint: - $(DOCKER_COMPOSE) run --rm test_unit npm run lint || true + $(DOCKER_COMPOSE) run --rm test_unit npm run lint test: format lint test_unit test_acceptance