Cicd (#24)
* Add basic non blocking CI workflow. * Make lint and typecheck continue on error until we have fixed those warnings.
This commit is contained in:
parent
999d0568fa
commit
f72aa8c840
|
@ -38,10 +38,12 @@ jobs:
|
||||||
# 4. Linting
|
# 4. Linting
|
||||||
- name: Run linter
|
- name: Run linter
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
continue-on-error: true # TODO: Remove this when we have fixed lint errors
|
||||||
|
|
||||||
# 5. Type Checking
|
# 5. Type Checking
|
||||||
- name: Run type check
|
- name: Run type check
|
||||||
run: npm run typecheck # Or: tsc --noEmit
|
run: npm run typecheck # Or: tsc --noEmit
|
||||||
|
continue-on-error: true # TODO: Remove this when we have fixed type errors
|
||||||
|
|
||||||
# 6. Build
|
# 6. Build
|
||||||
# Optional if your tests run directly on TS files (e.g., using ts-jest, ts-node)
|
# Optional if your tests run directly on TS files (e.g., using ts-jest, ts-node)
|
||||||
|
|
Loading…
Reference in New Issue