From e868b1592170b838af708f765e5cc0ab61c254ef Mon Sep 17 00:00:00 2001 From: Daniel Rainer <daniel.m.rainer@student.uibk.ac.at> Date: Tue, 1 Mar 2022 20:58:51 +0100 Subject: [PATCH] Make linter output visible --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 67d05b583..7ffdb86a5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,7 @@ eslint: script: - npm install # eslint exits 0 on warnings, this is a workaround to exit 1 when warnings are present. - - "! npm run lint | grep -qE '✖ [0-9]+ problem'" + - "! npm run lint | tee /dev/tty | grep -qE '✖ [0-9]+ problem'" allow_failure: true needs: [] -- GitLab