fix(ci): run tests sequentially to avoid global state pollution

This commit is contained in:
RhenCloud 2026-08-17 10:57:55 +08:00
parent b7a100a4a8
commit 2e1b0f022e
No known key found for this signature in database
GPG key ID: A574A617378C4E0B
2 changed files with 2 additions and 2 deletions

View file

@ -14,5 +14,5 @@ jobs:
with:
bun-version: 1.3.14
- run: bun install --frozen-lockfile
- run: bun test
- run: bun test --parallel=1
- run: bun run lint

View file

@ -16,7 +16,7 @@
"lint:md": "markdownlint '**/*.md' --ignore node_modules --ignore dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "bun test",
"test": "bun test --parallel=1",
"db:migrate": "wrangler d1 migrations apply webhooker --local",
"db:migrate:prod": "wrangler d1 migrations apply webhooker --remote",
"docs:dev": "vitepress dev docs",