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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: npm ci

- name: Run vitest
run: npm test
run: npm run test:unit

typecheck:
name: Typecheck
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"build": "vite build",
"preview": "vite preview",
"serve": "vite preview",
"test": "vitest run",
"test": "npm run test:unit && npm run typecheck",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint .",
Expand Down
Loading