From b5a8ca7f7ff3dc5ec7126734447ad1451337b81d Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Wed, 6 Apr 2022 13:22:31 +0200 Subject: [PATCH] chore: disallow any linting issues for pulls (#177) --- .github/workflows/review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index daa333ff..dbe33602 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -30,7 +30,7 @@ jobs: run: yarn install --frozen-lockfile --check-files - name: ✅ Lint code - run: yarn lint + run: yarn lint --max-warnings=0 - name: 🧪 Test code run: yarn test