Skip to content

Commit e2118ac

Browse files
authored
fix(ci): fix vitest config for v4 and use correct test runner (#2159)
1 parent 1559da0 commit e2118ac

4 files changed

Lines changed: 9 additions & 25 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- run: bun tsc --build
4848

4949
# Tests
50-
- run: bun test
50+
- run: bun run test -- --run
5151

5252
# Build all workspaces
5353
- run: bun --filter @repo/web build

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@
1111

1212
</div>
1313

14-
A full-stack monorepo template for building SaaS applications with React 19, tRPC, and Cloudflare Workers. Type-safe from database to UI, deployable to the edge in minutes. New here? Ask our AI assistant on [ChatGPT](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant) or [Gemini](https://gemini.google.com/gem/1IXFElQ2UvvZY86iL6uZLeoC-r8mp-OB-?usp=sharing).
15-
16-
React Starter Kit is proudly supported by these amazing sponsors:
17-
18-
<a href="https://reactstarter.com/s/1"><img src="https://reactstarter.com/s/1.png" height="60" /></a>&nbsp;&nbsp;<a href="https://reactstarter.com/s/2"><img src="https://reactstarter.com/s/2.png" height="60" /></a>&nbsp;&nbsp;<a href="https://reactstarter.com/s/3"><img src="https://reactstarter.com/s/3.png" height="60" /></a>
14+
A full-stack monorepo template for building SaaS applications with React 19, tRPC, and Cloudflare Workers. Type-safe from database to UI, deployable to the edge in minutes.
1915

2016
## Highlights
2117

@@ -26,6 +22,10 @@ React Starter Kit is proudly supported by these amazing sponsors:
2622
- **Database ready** — Drizzle ORM with Neon PostgreSQL, migrations, and seed data
2723
- **Fast DX** — Bun runtime, Vite, Vitest, ESLint, Prettier, and pre-configured VS Code settings
2824

25+
React Starter Kit is proudly supported by these amazing sponsors:
26+
27+
<a href="https://reactstarter.com/s/1"><img src="https://reactstarter.com/s/1.png" height="60" /></a>&nbsp;&nbsp;<a href="https://reactstarter.com/s/2"><img src="https://reactstarter.com/s/2.png" height="60" /></a>&nbsp;&nbsp;<a href="https://reactstarter.com/s/3"><img src="https://reactstarter.com/s/3.png" height="60" /></a>
28+
2929
## Technology Stack
3030

3131
| Layer | Technologies |

vitest.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@ import { defineConfig } from "vitest/config";
77
*/
88
export default defineConfig({
99
cacheDir: "./.cache/vite",
10+
test: {
11+
projects: ["apps/*"],
12+
},
1013
});

vitest.workspace.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)