Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,12 @@ jobs:
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Domain unit tests + coverage
run: pnpm --filter @tithe/domain test:coverage
- name: Upload domain coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: domain-coverage
path: packages/domain/coverage/
retention-days: 14
9 changes: 8 additions & 1 deletion packages/domain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@
"build": "tsc -p tsconfig.json",
"dev": "tsc -w -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "biome check src"
"lint": "biome check src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@tithe/contracts": "workspace:*",
"@tithe/db": "workspace:*",
"drizzle-orm": "^0.41.0",
"rrule": "^2.8.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.0.8",
"vitest": "^3.0.8"
}
}
Loading