[misc] make: ignore a lint/format task failure

This commit is contained in:
Jakob Ackermann 2020-06-03 11:32:08 +01:00
parent 70dcf9400a
commit ebf86bc997

View file

@ -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