From bfe8b79caa0c172f07b9454a93795acbdf776364 Mon Sep 17 00:00:00 2001 From: Dev Jaja Date: Thu, 26 Mar 2026 13:14:05 -0400 Subject: [PATCH] Fix: Remove continue-on-error from API tests in CI after fixing test failures --- .github/workflows/ci-cd.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 9100551b..96f42095 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -143,8 +143,7 @@ jobs: run: npx tsc --noEmit - name: Run tests - run: | - npm test || echo "::warning::API tests have pre-existing failures that need to be fixed" + run: npm test - name: Build run: npm run build