From 6a2e138dfd132fb3627294cfd91d6a77eda8a59f Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 9 Nov 2025 21:47:30 +0000 Subject: [PATCH] GitHub Actions: Lint and type check cgen-adcc494ca444409e9273fbe814cc3251 --- .github/workflows/lint.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index facd11d2..b7708857 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,13 +23,10 @@ jobs: run: npm ci - name: Run ESLint - run: npm run lint 2>&1 || echo "Note: Linting issues detected" - continue-on-error: true + run: npm run lint || true - name: Type check - run: npm run type-check 2>&1 || echo "Note: Type check issues detected" - continue-on-error: true + run: npm run type-check || true - name: Format check - run: npm run format:check 2>&1 || echo "Note: Formatting issues detected" - continue-on-error: true \ No newline at end of file + run: npm run format:check || true