Skip to content

Commit 869723f

Browse files
morealclaude
andcommitted
Run Node.js and Bun tests in parallel
Since builds are now completed by setup-mise before tests run, there's no need to run tests in topological order. Adding --parallel to pnpm run commands allows all package tests to execute concurrently, reducing overall test execution time. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 0fb82eb commit 869723f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mise.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ run = "deno test --check --doc --allow-all --unstable-kv --trace-leaks --paralle
106106
[tasks."test:node"]
107107
description = "Run the test suite using Node.js"
108108
depends = ["prepare"]
109-
run = "pnpm run --recursive --filter '!{docs}' --config.enable-pre-post-scripts=false test"
109+
run = "pnpm run --recursive --parallel --filter '!{docs}' --config.enable-pre-post-scripts=false test"
110110

111111
[tasks."test:bun"]
112112
description = "Run the test suite using Bun"
113113
depends = ["prepare"]
114-
run = "pnpm run --recursive --filter '!{docs}' --config.enable-pre-post-scripts=false test:bun"
114+
run = "pnpm run --recursive --parallel --filter '!{docs}' --config.enable-pre-post-scripts=false test:bun"
115115

116116
[tasks.test]
117117
description = "Run the test suite across all environments (Deno, Node.js, Bun)"

0 commit comments

Comments
 (0)