From 6b10b19020030a73efee9164783fe82d7f6e0db4 Mon Sep 17 00:00:00 2001 From: Joelson Date: Fri, 7 Nov 2025 12:26:55 -0300 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d797e36..75f5c40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,10 +25,12 @@ jobs: run: npm ci - name: Run ESLint - run: npx eslint "src/**/*.ts" + run: npx eslint "src/**/*.ts" --max-warnings 0 + continue-on-error: true - name: Run Prettier check run: npx prettier --check "src/**/*.ts" "test/**/*.ts" + continue-on-error: true build: name: Build