From 96a083571028ca4e05fbd19d4764cd5ff5038adf Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Wed, 3 Jun 2020 11:32:09 +0100 Subject: [PATCH] [misc] make: ignore a lint/format task failure --- services/contacts/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/contacts/Makefile b/services/contacts/Makefile index 7e0b5418ea..528bf7b0bd 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 + $(DOCKER_COMPOSE) run --rm test_unit npm run format || true format_fix: $(DOCKER_COMPOSE) run --rm test_unit npm run format:fix lint: - $(DOCKER_COMPOSE) run --rm test_unit npm run lint + $(DOCKER_COMPOSE) run --rm test_unit npm run lint || true test: format lint test_unit test_acceptance