From eb34039be905990a008defe208a1eff0e8189e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Tue, 28 Sep 2021 12:17:17 +0200 Subject: [PATCH] MOBILE-2748 github: Ignore warnings during linter on testing --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 5b10f13a3..6e5aed17e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -51,8 +51,8 @@ jobs: echo "Found $found missing langkeys" exit 1 fi - - name: Run Linter - run: npm run lint + - name: Run Linter (ignore warnings) + run: npm run lint -- --quiet - name: Run tests run: npm run test:ci - name: Production builds