From 361f8ff1230608e38995bba10c9a10dbe9d96b7f Mon Sep 17 00:00:00 2001 From: Tim Alby Date: Thu, 4 Jun 2020 10:21:50 +0200 Subject: [PATCH] Revert "[misc] make: ignore a lint/format task failure" This reverts commit 26e27b0ff22d694ce58b0e721416c2b775f7ae6a. --- services/notifications/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/notifications/Makefile b/services/notifications/Makefile index d1416ad86e..e8e014044b 100644 --- a/services/notifications/Makefile +++ b/services/notifications/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