summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Hutchison <[email protected]>2025-04-18 10:26:27 -0700
committerGitHub <[email protected]>2025-04-18 10:26:27 -0700
commitf72aa8c84015388c0da79535b41710632980d413 (patch)
tree46b68aa03243e43ffd93194dec966024701bfeb8
parent999d0568fab9c4da2ae0978c4344bf76fe2cb27e (diff)
Cicd (#24)
* Add basic non blocking CI workflow. * Make lint and typecheck continue on error until we have fixed those warnings.
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2b2909ef..df4a45d7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,10 +38,12 @@ jobs:
# 4. Linting
- name: Run linter
run: npm run lint
+ continue-on-error: true # TODO: Remove this when we have fixed lint errors
# 5. Type Checking
- name: Run type check
run: npm run typecheck # Or: tsc --noEmit
+ continue-on-error: true # TODO: Remove this when we have fixed type errors
# 6. Build
# Optional if your tests run directly on TS files (e.g., using ts-jest, ts-node)