chore(ci): add unit and component tests to lefthook and gitea workflow

This commit is contained in:
Ilia Mashkov
2026-04-22 09:09:21 +03:00
parent 6664beec25
commit cbc978df6d
2 changed files with 10 additions and 0 deletions
+6
View File
@@ -43,6 +43,12 @@ jobs:
- name: Type Check
run: yarn check
- name: Run Unit Tests
run: yarn test:unit
- name: Run Component Tests
run: yarn test:component
publish:
needs: build # Only runs if tests/lint pass
runs-on: ubuntu-latest
+4
View File
@@ -13,6 +13,10 @@ pre-commit:
pre-push:
parallel: true
commands:
test-unit:
run: yarn test:unit
test-component:
run: yarn test:component
type-check:
run: yarn tsc --noEmit