From 442d3df29cfcda725022de0307b8a7ca7018ad36 Mon Sep 17 00:00:00 2001 From: Marcus Efraimsson Date: Thu, 15 Apr 2021 16:21:33 +0200 Subject: [PATCH] Chore: Bump strict error count limit (#33035) --- scripts/ci-check-strict.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-check-strict.sh b/scripts/ci-check-strict.sh index 6262376933a..14e0bbc88e2 100755 --- a/scripts/ci-check-strict.sh +++ b/scripts/ci-check-strict.sh @@ -3,7 +3,7 @@ set -e echo -e "Collecting code stats (typescript errors & more)" -ERROR_COUNT_LIMIT=255 +ERROR_COUNT_LIMIT=256 ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')" if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then