Skip to content

Version Packages (beta)#1655

Merged
karthikscale3 merged 1 commit intomainfrom
changeset-release/main
Apr 11, 2026
Merged

Version Packages (beta)#1655
karthikscale3 merged 1 commit intomainfrom
changeset-release/main

Conversation

@workflow-devkit-release-bot
Copy link
Copy Markdown
Contributor

@workflow-devkit-release-bot workflow-devkit-release-bot bot commented Apr 8, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@workflow/builders@5.0.0-beta.1

Major Changes

  • #1662 89d242f Thanks @TooTallNate! - BREAKING CHANGE: Remove isWorkflowSdkFile path-based serde exclusion. Serde discovery now uses AST-level verification via SWC detect mode across all integration paths (esbuild plugin, Next.js deferred builder, Next.js loader). This allows class definitions with serde symbols in SDK packages like @workflow/core to be discovered and bundled correctly.

Patch Changes

  • #1669 dc0c0dc Thanks @TooTallNate! - Fix step bundle discovery and externalization for SDK serde classes

    • Broaden importParents tracking to all imports (not just file extensions) so parentHasChild() works through bare specifier imports
    • Include workflow/runtime in discovery inputs so SDK serde classes like Run are always discovered
    • Bundle node_modules deps instead of externalizing with broken relative paths
  • #1562 e436242 Thanks @VaguelySerious! - Switch Vercel Build Output API and standalone builder output from CJS to ESM. Step bundles, workflow bundles, and webhook bundles now emit ESM format by default, preserving native import.meta.url support and eliminating the need for CJS polyfills. Fully-bundled ESM output includes a createRequire banner to support CJS dependencies that use require() for Node.js builtins. The intermediate workflow bundle (which runs inside vm.runInContext) remains CJS as required by the VM execution model.

  • #1670 32a17b4 Thanks @TooTallNate! - Fix lazy discovery bare specifier resolution in copied step files

    • Use enhanced-resolve with ESM conditions to resolve bare specifiers from the original source file's location
    • Only rewrite specifiers that can't resolve from the app directory (transitive SDK deps)
    • Add enhanced-resolve to pnpm catalog and use catalog: in both packages
  • Updated dependencies [d040182, 66d49c0, ec517fa, a5c90ce, ea97bd6, 0a86de3, 71d39d2, 873b4e2, 66585fd, 0a86de3, 66d49c0, ebb0a4a, 9513a81]:

    • @workflow/swc-plugin@5.0.0-beta.1
    • @workflow/core@5.0.0-beta.1
    • @workflow/errors@5.0.0-beta.0

@workflow/cli@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

Patch Changes

  • #1562 e436242 Thanks @VaguelySerious! - Switch Vercel Build Output API and standalone builder output from CJS to ESM. Step bundles, workflow bundles, and webhook bundles now emit ESM format by default, preserving native import.meta.url support and eliminating the need for CJS polyfills. Fully-bundled ESM output includes a createRequire banner to support CJS dependencies that use require() for Node.js builtins. The intermediate workflow bundle (which runs inside vm.runInContext) remains CJS as required by the VM execution model.

  • #942 873b4e2 Thanks @VaguelySerious! - BREAKING CHANGE: Make getWorld and createWorld asynchronous to support ESM dynamic imports for custom world modules. All callers must now await getWorld().

  • Updated dependencies [d040182, 66d49c0, dc0c0dc, e436242, ec517fa, a5c90ce, ea97bd6, 68cf25e, 0a86de3, 32a17b4, 71d39d2, 873b4e2, 66585fd, 0a86de3, 89d242f, 66d49c0, ebb0a4a, 9513a81]:

    • @workflow/swc-plugin@5.0.0-beta.1
    • @workflow/world@5.0.0-beta.1
    • @workflow/world-local@5.0.0-beta.1
    • @workflow/world-vercel@5.0.0-beta.1
    • @workflow/core@5.0.0-beta.1
    • @workflow/web@5.0.0-beta.1
    • @workflow/builders@5.0.0-beta.1
    • @workflow/errors@5.0.0-beta.0

@workflow/core@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1632 0a86de3 Thanks @TooTallNate! - BREAKING CHANGE: Remove @workflow/core/private and workflow/internal/private public subpath exports. The SWC compiler plugin no longer generates imports from these paths.

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

Minor Changes

  • #1652 ec517fa Thanks @TooTallNate! - Add features.encryption to WorkflowMetadata returned by getWorkflowMetadata()

  • #1616 71d39d2 Thanks @TooTallNate! - Use custom class serialization for Run across runtime and workflow VM contexts, and add e2e coverage for Run instance boundary roundtrips

  • #1677 9513a81 Thanks @TooTallNate! - Add serialization support for workflow function references

Patch Changes

  • #1658 a5c90ce Thanks @VaguelySerious! - Fix community world E2E tests by adding specVersion to the World interface so start() uses the safe baseline (v2) for worlds that don't declare their supported version

  • #1678 ea97bd6 Thanks @TooTallNate! - Remove redundant hc_ prefix from health check correlationId that caused doubled hc_hc_ in the derived runId and stream name.

  • #942 873b4e2 Thanks @VaguelySerious! - BREAKING CHANGE: Make getWorld and createWorld asynchronous to support ESM dynamic imports for custom world modules. All callers must now await getWorld().

  • Updated dependencies [66d49c0, a5c90ce, 68cf25e, 66d49c0]:

    • @workflow/world@5.0.0-beta.1
    • @workflow/world-local@5.0.0-beta.1
    • @workflow/world-vercel@5.0.0-beta.1
    • @workflow/errors@5.0.0-beta.0

@workflow/next@5.0.0-beta.1

Major Changes

  • #1662 89d242f Thanks @TooTallNate! - BREAKING CHANGE: Remove isWorkflowSdkFile path-based serde exclusion. Serde discovery now uses AST-level verification via SWC detect mode across all integration paths (esbuild plugin, Next.js deferred builder, Next.js loader). This allows class definitions with serde symbols in SDK packages like @workflow/core to be discovered and bundled correctly.

Patch Changes

  • #1670 32a17b4 Thanks @TooTallNate! - Fix lazy discovery bare specifier resolution in copied step files

    • Use enhanced-resolve with ESM conditions to resolve bare specifiers from the original source file's location
    • Only rewrite specifiers that can't resolve from the app directory (transitive SDK deps)
    • Add enhanced-resolve to pnpm catalog and use catalog: in both packages
  • #1646 644d6b8 Thanks @ijjk! - Stop eager input-graph directive discovery in deferred Next.js builds and rely on loader/socket-driven discovery with onBeforeDeferredEntries.

  • Updated dependencies [d040182, 66d49c0, dc0c0dc, e436242, ec517fa, a5c90ce, ea97bd6, 0a86de3, 32a17b4, 71d39d2, 873b4e2, 66585fd, 0a86de3, 89d242f, 66d49c0, ebb0a4a, 9513a81]:

    • @workflow/swc-plugin@5.0.0-beta.1
    • @workflow/core@5.0.0-beta.1
    • @workflow/builders@5.0.0-beta.1

@workflow/rollup@5.0.0-beta.1

Major Changes

  • #1662 89d242f Thanks @TooTallNate! - BREAKING CHANGE: Remove isWorkflowSdkFile path-based serde exclusion. Serde discovery now uses AST-level verification via SWC detect mode across all integration paths (esbuild plugin, Next.js deferred builder, Next.js loader). This allows class definitions with serde symbols in SDK packages like @workflow/core to be discovered and bundled correctly.

Patch Changes

@workflow/swc-plugin@5.0.0-beta.1

Major Changes

  • #1632 0a86de3 Thanks @TooTallNate! - BREAKING CHANGE: Inline all step registrations as self-contained IIFEs instead of generating import { registerStepFunction } from "workflow/internal/private". Closure variable access is also inlined. This eliminates the dependency on the workflow package being available in node_modules, enabling 3rd-party packages to define step functions. Registrations are now placed immediately after each function definition instead of being batched at the bottom of the file.

Minor Changes

  • #1633 d040182 Thanks @TooTallNate! - Allow synchronous functions to use "use step" directive. This enables using "use step" as a mechanism to strip Node.js-dependent code from the workflow VM bundle without requiring the function to be async.

Patch Changes

  • #1671 66585fd Thanks @TooTallNate! - Eliminate unreferenced private class members in workflow mode after "use step" stripping

  • #1664 ebb0a4a Thanks @TooTallNate! - Restore export validation for file-level "use step" files: only function exports (sync or async) are allowed; non-function exports (constants, classes, re-exports) emit an error

@workflow/web@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

workflow@5.0.0-beta.1

Major Changes

  • #1632 0a86de3 Thanks @TooTallNate! - BREAKING CHANGE: Remove @workflow/core/private and workflow/internal/private public subpath exports. The SWC compiler plugin no longer generates imports from these paths.

Minor Changes

  • #1616 71d39d2 Thanks @TooTallNate! - Use custom class serialization for Run across runtime and workflow VM contexts, and add e2e coverage for Run instance boundary roundtrips

Patch Changes

@workflow/world@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

Patch Changes

  • #1658 a5c90ce Thanks @VaguelySerious! - Fix community world E2E tests by adding specVersion to the World interface so start() uses the safe baseline (v2) for worlds that don't declare their supported version

@workflow/world-local@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

Patch Changes

  • #1658 a5c90ce Thanks @VaguelySerious! - Fix community world E2E tests by adding specVersion to the World interface so start() uses the safe baseline (v2) for worlds that don't declare their supported version

  • Updated dependencies [66d49c0, a5c90ce, 66d49c0]:

    • @workflow/world@5.0.0-beta.1
    • @workflow/errors@5.0.0-beta.0

@workflow/world-postgres@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

Patch Changes

  • #1658 a5c90ce Thanks @VaguelySerious! - Fix community world E2E tests by adding specVersion to the World interface so start() uses the safe baseline (v2) for worlds that don't declare their supported version

  • Updated dependencies [66d49c0, a5c90ce, 66d49c0]:

    • @workflow/world@5.0.0-beta.1
    • @workflow/world-local@5.0.0-beta.1
    • @workflow/errors@5.0.0-beta.0

@workflow/world-vercel@5.0.0-beta.1

Major Changes

  • #1293 66d49c0 Thanks @VaguelySerious! - BREAKING CHANGE: Restructure stream methods on World interface to use world.streams.* namespace with runId as the first parameter. writeToStream(name, runId, chunk)streams.write(runId, name, chunk), writeToStreamMultistreams.writeMulti, closeStreamstreams.close, readFromStreamstreams.get(runId, name, startIndex?), listStreamsByRunIdstreams.list(runId).

  • #1293 66d49c0 Thanks @VaguelySerious! - Require runId argument for world.steps.get.

Patch Changes

  • #1658 a5c90ce Thanks @VaguelySerious! - Fix community world E2E tests by adding specVersion to the World interface so start() uses the safe baseline (v2) for worlds that don't declare their supported version

  • #1676 68cf25e Thanks @TooTallNate! - Fix streams.get() to include runId in the request URL instead of always omitting it.

  • Updated dependencies [66d49c0, a5c90ce, 66d49c0]:

    • @workflow/world@5.0.0-beta.1
    • @workflow/errors@5.0.0-beta.0

@workflow/typescript-plugin@5.0.0-beta.1

Minor Changes

  • #1633 d040182 Thanks @TooTallNate! - Allow synchronous functions to use "use step" directive. This enables using "use step" as a mechanism to strip Node.js-dependent code from the workflow VM bundle without requiring the function to be async.

@workflow/ai@5.0.0-beta.1

Patch Changes

  • #1663 4d31619 Thanks @gr2m! - fix(ai): preserve provider tool identity across step boundaries

    Provider tools (e.g. anthropic.tools.webSearch) were being converted to plain function tools in toolsToModelTools, stripping type: 'provider', id, and args. This caused providers like Anthropic Gateway to not recognize them as provider-executed tools.

  • Updated dependencies [c6b630f, 71d39d2, 0a86de3]:

    • workflow@5.0.0-beta.1

@workflow/astro@5.0.0-beta.1

Patch Changes

@workflow/nest@5.0.0-beta.1

Patch Changes

@workflow/nitro@5.0.0-beta.1

Patch Changes

@workflow/nuxt@5.0.0-beta.1

Patch Changes

  • Updated dependencies []:
    • @workflow/nitro@5.0.0-beta.1

@workflow/sveltekit@5.0.0-beta.1

Patch Changes

@workflow/vite@5.0.0-beta.1

Patch Changes

@workflow/vitest@5.0.0-beta.1

Patch Changes

@workflow/web-shared@5.0.0-beta.1

Patch Changes

@workflow/world-testing@5.0.0-beta.1

Patch Changes

@workflow-devkit-release-bot workflow-devkit-release-bot bot requested a review from a team as a code owner April 8, 2026 16:56
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 8, 2026

📊 Benchmark Results

📈 Comparing against baseline from main branch. Green 🟢 = faster, Red 🔺 = slower.

workflow with no steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 0.041s (+12.4% 🔺) 1.004s (~) 0.963s 10 1.00x
💻 Local Nitro 0.048s (+16.1% 🔺) 1.006s (~) 0.957s 10 1.19x
🐘 Postgres Nitro 0.061s (-8.5% 🟢) 1.010s (~) 0.949s 10 1.50x
🐘 Postgres Express 0.062s (+8.0% 🔺) 1.011s (~) 0.949s 10 1.52x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 0.246s (-4.8%) 2.114s (+17.4% 🔺) 1.868s 10 1.00x
▲ Vercel Next.js (Turbopack) 0.274s (+4.7%) 2.326s (+3.0%) 2.052s 10 1.11x
▲ Vercel Nitro 0.397s (+53.9% 🔺) 2.173s (+7.8% 🔺) 1.776s 10 1.61x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

workflow with 1 step

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 1.093s (~) 2.005s (~) 0.912s 10 1.00x
💻 Local Nitro 1.127s (~) 2.006s (~) 0.879s 10 1.03x
🐘 Postgres Express 1.146s (~) 2.010s (~) 0.865s 10 1.05x
🐘 Postgres Nitro 1.149s (~) 2.010s (~) 0.861s 10 1.05x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 1.932s (+1.4%) 3.871s (+1.1%) 1.939s 10 1.00x
▲ Vercel Express 1.994s (+0.5%) 4.017s (+4.0%) 2.024s 10 1.03x
▲ Vercel Next.js (Turbopack) 2.019s (-1.3%) 3.977s (-3.0%) 1.958s 10 1.04x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 10 sequential steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 10.624s (~) 11.022s (~) 0.398s 3 1.00x
🐘 Postgres Nitro 10.885s (~) 11.022s (~) 0.137s 3 1.02x
💻 Local Nitro 10.940s (~) 11.024s (~) 0.084s 3 1.03x
🐘 Postgres Express 10.973s (+0.9%) 11.360s (+3.1%) 0.386s 3 1.03x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 16.470s (-13.2% 🟢) 18.160s (-11.5% 🟢) 1.690s 2 1.00x
▲ Vercel Next.js (Turbopack) 16.599s (-5.8% 🟢) 18.979s (-3.5%) 2.380s 2 1.01x
▲ Vercel Express 20.823s (+17.5% 🔺) 22.751s (+12.6% 🔺) 1.928s 2 1.26x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

workflow with 25 sequential steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 14.166s (-0.5%) 15.027s (~) 0.861s 4 1.00x
🐘 Postgres Nitro 14.602s (~) 15.025s (~) 0.423s 4 1.03x
🐘 Postgres Express 14.615s (+0.5%) 15.028s (~) 0.414s 4 1.03x
💻 Local Nitro 14.966s (~) 15.280s (+1.7%) 0.314s 4 1.06x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 30.747s (-9.9% 🟢) 33.065s (-8.4% 🟢) 2.319s 2 1.00x
▲ Vercel Next.js (Turbopack) 31.094s (-18.9% 🟢) 33.481s (-16.8% 🟢) 2.387s 2 1.01x
▲ Vercel Express 32.526s (-9.0% 🟢) 34.552s (-8.7% 🟢) 2.026s 2 1.06x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

workflow with 50 sequential steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Express 14.054s (+0.7%) 14.879s (+4.0%) 0.826s 7 1.00x
🐘 Postgres Nitro 14.103s (~) 14.882s (+1.0%) 0.779s 7 1.00x
💻 Local Express 14.820s (-1.5%) 15.027s (-3.2%) 0.207s 6 1.05x
💻 Local Nitro 16.581s (-1.0%) 17.031s (~) 0.450s 6 1.18x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 52.141s (-6.0% 🟢) 54.647s (-5.3% 🟢) 2.506s 2 1.00x
▲ Vercel Next.js (Turbopack) 53.334s (-10.6% 🟢) 55.537s (-10.1% 🟢) 2.203s 2 1.02x
▲ Vercel Express 53.434s (-1.9%) 55.736s (-1.2%) 2.302s 2 1.02x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

Promise.all with 10 concurrent steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Express 1.275s (~) 2.011s (~) 0.736s 15 1.00x
🐘 Postgres Nitro 1.275s (~) 2.011s (~) 0.735s 15 1.00x
💻 Local Express 1.440s (~) 2.004s (~) 0.565s 15 1.13x
💻 Local Nitro 1.514s (-0.5%) 2.006s (~) 0.491s 15 1.19x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 2.085s (-28.7% 🟢) 3.858s (-17.2% 🟢) 1.773s 8 1.00x
▲ Vercel Next.js (Turbopack) 2.190s (-16.2% 🟢) 4.020s (-10.4% 🟢) 1.830s 8 1.05x
▲ Vercel Express 2.345s (-12.8% 🟢) 4.387s (-1.5%) 2.042s 7 1.12x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

Promise.all with 25 concurrent steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Express 2.342s (~) 3.008s (~) 0.666s 10 1.00x
🐘 Postgres Nitro 2.350s (~) 3.010s (~) 0.661s 10 1.00x
💻 Local Express 2.628s (+1.9%) 3.007s (~) 0.379s 10 1.12x
💻 Local Nitro 3.034s (+2.3%) 3.760s (~) 0.726s 8 1.30x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 2.743s (+4.1%) 4.627s (+5.2% 🔺) 1.884s 7 1.00x
▲ Vercel Nitro 2.818s (+3.1%) 4.208s (-8.4% 🟢) 1.390s 8 1.03x
▲ Vercel Next.js (Turbopack) 2.885s (+12.7% 🔺) 4.638s (+11.4% 🔺) 1.753s 7 1.05x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Promise.all with 50 concurrent steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 3.498s (~) 4.012s (~) 0.514s 8 1.00x
🐘 Postgres Express 3.530s (+1.0%) 4.013s (~) 0.483s 8 1.01x
💻 Local Express 6.963s (+3.6%) 7.515s (+7.1% 🔺) 0.552s 4 1.99x
💻 Local Nitro 8.072s (-3.6%) 8.771s (-2.8%) 0.699s 4 2.31x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 2.520s (-19.4% 🟢) 4.517s (-8.4% 🟢) 1.997s 7 1.00x
▲ Vercel Nitro 2.653s (+1.8%) 4.215s (~) 1.562s 8 1.05x
▲ Vercel Next.js (Turbopack) 5.368s (+66.8% 🔺) 7.213s (+42.7% 🔺) 1.844s 6 2.13x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Promise.race with 10 concurrent steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 1.269s (~) 2.008s (~) 0.739s 15 1.00x
🐘 Postgres Express 1.284s (+1.4%) 2.010s (~) 0.726s 15 1.01x
💻 Local Express 1.443s (-1.6%) 2.005s (~) 0.562s 15 1.14x
💻 Local Nitro 1.543s (+1.3%) 2.006s (~) 0.463s 15 1.22x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 1.828s (-10.8% 🟢) 3.682s (-10.1% 🟢) 1.854s 9 1.00x
▲ Vercel Express 2.942s (+27.9% 🔺) 5.207s (+20.4% 🔺) 2.265s 6 1.61x
▲ Vercel Next.js (Turbopack) 3.372s (+51.3% 🔺) 5.209s (+29.5% 🔺) 1.837s 6 1.84x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

Promise.race with 25 concurrent steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 2.344s (-0.8%) 3.010s (~) 0.666s 10 1.00x
🐘 Postgres Express 2.369s (~) 3.009s (~) 0.640s 10 1.01x
💻 Local Express 2.681s (-9.8% 🟢) 3.008s (-10.0% 🟢) 0.327s 10 1.14x
💻 Local Nitro 3.078s (-0.6%) 3.885s (-3.1%) 0.807s 8 1.31x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 2.653s (-1.8%) 4.681s (+6.7% 🔺) 2.028s 7 1.00x
▲ Vercel Nitro 2.830s (+13.4% 🔺) 4.424s (+5.6% 🔺) 1.594s 7 1.07x
▲ Vercel Next.js (Turbopack) 3.721s (+28.9% 🔺) 5.596s (+19.6% 🔺) 1.875s 6 1.40x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Promise.race with 50 concurrent steps

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 3.486s (~) 4.011s (~) 0.524s 8 1.00x
🐘 Postgres Express 3.503s (~) 4.011s (~) 0.507s 8 1.00x
💻 Local Express 7.628s (-5.2% 🟢) 8.016s (-8.6% 🟢) 0.388s 4 2.19x
💻 Local Nitro 8.601s (-7.9% 🟢) 9.026s (-10.0% 🟢) 0.426s 4 2.47x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 2.992s (-7.0% 🟢) 4.968s (-2.9%) 1.975s 7 1.00x
▲ Vercel Next.js (Turbopack) 3.373s (~) 5.357s (-1.3%) 1.984s 6 1.13x
▲ Vercel Nitro 4.418s (+48.5% 🔺) 6.201s (+22.7% 🔺) 1.783s 5 1.48x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

workflow with 10 sequential data payload steps (10KB)

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 0.689s (-1.7%) 1.021s (+1.7%) 0.332s 59 1.00x
🐘 Postgres Nitro 0.826s (-1.3%) 1.023s (+1.6%) 0.197s 59 1.20x
🐘 Postgres Express 0.842s (+1.0%) 1.007s (~) 0.165s 60 1.22x
💻 Local Nitro 0.991s (~) 1.201s (-4.3%) 0.209s 51 1.44x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 9.126s (-5.6% 🟢) 10.796s (-6.5% 🟢) 1.670s 6 1.00x
▲ Vercel Next.js (Turbopack) 9.159s (-15.4% 🟢) 11.405s (-10.0% 🟢) 2.246s 6 1.00x
▲ Vercel Nitro 9.405s (+0.7%) 11.473s (+3.0%) 2.068s 6 1.03x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

workflow with 25 sequential data payload steps (10KB)

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 1.933s (~) 2.124s (-5.6% 🟢) 0.192s 43 1.00x
🐘 Postgres Express 2.013s (+2.5%) 2.496s (+12.1% 🔺) 0.483s 37 1.04x
💻 Local Express 2.226s (-8.8% 🟢) 3.007s (-5.4% 🟢) 0.781s 30 1.15x
💻 Local Nitro 3.023s (~) 3.609s (+0.7%) 0.586s 25 1.56x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 27.136s (-3.0%) 28.964s (-3.7%) 1.828s 4 1.00x
▲ Vercel Express 27.420s (-1.8%) 29.674s (-1.8%) 2.255s 4 1.01x
▲ Vercel Next.js (Turbopack) 28.301s (-4.1%) 30.371s (-3.8%) 2.070s 3 1.04x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 50 sequential data payload steps (10KB)

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 3.996s (+2.7%) 4.455s (+7.4% 🔺) 0.459s 27 1.00x
🐘 Postgres Express 3.998s (-0.6%) 4.567s (+2.5%) 0.569s 27 1.00x
💻 Local Express 7.211s (-1.3%) 7.889s (-0.8%) 0.678s 16 1.80x
💻 Local Nitro 9.138s (-1.2%) 9.864s (-1.5%) 0.727s 13 2.29x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 71.051s (~) 73.254s (-0.6%) 2.203s 2 1.00x
▲ Vercel Nitro 72.011s (-5.9% 🟢) 73.977s (-5.7% 🟢) 1.966s 2 1.01x
▲ Vercel Next.js (Turbopack) 77.948s (+1.6%) 79.682s (~) 1.734s 2 1.10x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

workflow with 10 concurrent data payload steps (10KB)

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Express 0.286s (+1.2%) 1.007s (~) 0.721s 60 1.00x
🐘 Postgres Nitro 0.289s (+5.0% 🔺) 1.007s (~) 0.718s 60 1.01x
💻 Local Express 0.596s (+2.3%) 1.021s (+1.6%) 0.425s 59 2.09x
💻 Local Nitro 0.605s (+4.2%) 1.004s (~) 0.399s 60 2.12x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Next.js (Turbopack) 1.578s (-2.3%) 3.316s (-4.2%) 1.738s 19 1.00x
▲ Vercel Express 1.624s (+12.6% 🔺) 3.548s (+10.3% 🔺) 1.925s 17 1.03x
▲ Vercel Nitro 1.631s (+18.9% 🔺) 3.396s (+15.7% 🔺) 1.765s 18 1.03x

🔍 Observability: Next.js (Turbopack) | Express | Nitro

workflow with 25 concurrent data payload steps (10KB)

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Express 0.499s (-0.8%) 1.007s (~) 0.508s 90 1.00x
🐘 Postgres Nitro 0.501s (~) 1.007s (~) 0.506s 90 1.00x
💻 Local Express 2.403s (~) 3.007s (~) 0.604s 30 4.82x
💻 Local Nitro 2.550s (+3.0%) 3.009s (~) 0.459s 30 5.11x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Nitro 2.375s (-13.8% 🟢) 4.240s (-5.4% 🟢) 1.865s 22 1.00x
▲ Vercel Express 2.475s (-5.6% 🟢) 4.453s (-0.6%) 1.978s 21 1.04x
▲ Vercel Next.js (Turbopack) 2.720s (-13.9% 🟢) 4.606s (-5.6% 🟢) 1.886s 20 1.15x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 50 concurrent data payload steps (10KB)

💻 Local Development

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 0.803s (+2.6%) 1.008s (~) 0.205s 120 1.00x
🐘 Postgres Express 0.804s (+1.8%) 1.009s (~) 0.204s 119 1.00x
💻 Local Express 10.370s (+3.6%) 10.933s (+2.3%) 0.563s 11 12.91x
💻 Local Nitro 11.157s (~) 11.848s (~) 0.691s 11 13.89x
💻 Local Next.js (Turbopack) ⚠️ missing - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - -

▲ Production (Vercel)

World Framework Workflow Time Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Next.js (Turbopack) 5.668s (-2.9%) 7.663s (-1.7%) 1.995s 16 1.00x
▲ Vercel Nitro 5.930s (-11.2% 🟢) 7.847s (-10.7% 🟢) 1.917s 16 1.05x
▲ Vercel Express 6.419s (-2.7%) 8.532s (-1.0%) 2.114s 15 1.13x

🔍 Observability: Next.js (Turbopack) | Nitro | Express

Stream Benchmarks (includes TTFB metrics)
workflow with stream

💻 Local Development

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 0.139s (-0.6%) 1.004s (~) 0.009s (+1.1%) 1.015s (~) 0.876s 10 1.00x
💻 Local Nitro 0.204s (~) 1.004s (~) 0.012s (-2.5%) 1.018s (~) 0.814s 10 1.47x
🐘 Postgres Nitro 0.207s (-3.0%) 0.998s (~) 0.001s (~) 1.009s (~) 0.802s 10 1.49x
🐘 Postgres Express 0.209s (+1.2%) 0.995s (~) 0.001s (-15.4% 🟢) 1.010s (~) 0.801s 10 1.50x
💻 Local Next.js (Turbopack) ⚠️ missing - - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - - -

▲ Production (Vercel)

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 1.383s (-9.8% 🟢) 2.648s (-4.3%) 0.722s (+2.0%) 3.848s (-3.0%) 2.465s 10 1.00x
▲ Vercel Next.js (Turbopack) 1.537s (-15.5% 🟢) 2.920s (-14.2% 🟢) 0.514s (+93.6% 🔺) 3.872s (-8.0% 🟢) 2.335s 10 1.11x
▲ Vercel Nitro 1.569s (-0.5%) 2.821s (-5.9% 🟢) 0.582s (+57.0% 🔺) 3.835s (+0.8%) 2.266s 10 1.13x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

stream pipeline with 5 transform steps (1MB)

💻 Local Development

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
💻 Local 🥇 Express 0.568s (+1.8%) 1.011s (~) 0.009s (+5.2% 🔺) 1.022s (~) 0.454s 59 1.00x
🐘 Postgres Express 0.617s (+1.5%) 1.005s (~) 0.013s (+158.7% 🔺) 1.031s (+0.7%) 0.414s 59 1.09x
🐘 Postgres Nitro 0.628s (+2.3%) 1.005s (~) 0.005s (+36.8% 🔺) 1.023s (~) 0.395s 59 1.10x
💻 Local Nitro 0.735s (+1.1%) 1.012s (~) 0.009s (-8.7% 🟢) 1.023s (~) 0.289s 59 1.29x
💻 Local Next.js (Turbopack) ⚠️ missing - - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - - -

▲ Production (Vercel)

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 3.961s (-4.6%) 5.628s (-4.9%) 0.281s (+2.5%) 6.436s (-3.2%) 2.474s 10 1.00x
▲ Vercel Nitro 3.999s (-10.7% 🟢) 5.610s (-7.2% 🟢) 0.273s (-3.6%) 6.402s (-8.1% 🟢) 2.403s 10 1.01x
▲ Vercel Next.js (Turbopack) 5.266s (+15.5% 🔺) 6.857s (+6.2% 🔺) 0.328s (+11.0% 🔺) 7.797s (+5.0% 🔺) 2.532s 8 1.33x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

10 parallel streams (1MB each)

💻 Local Development

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Express 0.959s (+1.5%) 1.130s (-3.4%) 0.000s (+96.2% 🔺) 1.162s (-1.9%) 0.203s 52 1.00x
🐘 Postgres Nitro 0.987s (+0.7%) 1.246s (+4.5%) 0.000s (-20.3% 🟢) 1.259s (+3.4%) 0.272s 48 1.03x
💻 Local Nitro 1.243s (~) 2.023s (~) 0.000s (+37.5% 🔺) 2.025s (~) 0.782s 30 1.30x
💻 Local Express 1.339s (+17.5% 🔺) 2.018s (~) 0.000s (-6.2% 🟢) 2.199s (+8.8% 🔺) 0.860s 28 1.40x
💻 Local Next.js (Turbopack) ⚠️ missing - - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - - -

▲ Production (Vercel)

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 2.761s (+5.4% 🔺) 4.473s (+16.7% 🔺) 0.000s (-96.0% 🟢) 5.009s (+15.9% 🔺) 2.247s 13 1.00x
▲ Vercel Next.js (Turbopack) 3.037s (+2.1%) 4.485s (-3.8%) 0.000s (-96.2% 🟢) 4.948s (-4.7%) 1.911s 13 1.10x
▲ Vercel Nitro 3.405s (+16.0% 🔺) 4.672s (+11.9% 🔺) 0.000s (+8.3% 🔺) 5.129s (+10.0% 🔺) 1.724s 12 1.23x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

fan-out fan-in 10 streams (1MB each)

💻 Local Development

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
🐘 Postgres 🥇 Nitro 1.792s (+1.7%) 2.141s (+2.0%) 0.000s (-100.0% 🟢) 2.152s (+1.9%) 0.360s 28 1.00x
🐘 Postgres Express 1.796s (+1.0%) 2.141s (~) 0.000s (+Infinity% 🔺) 2.159s (+0.6%) 0.362s 28 1.00x
💻 Local Express 3.495s (+6.7% 🔺) 4.033s (+3.2%) 0.000s (-72.7% 🟢) 4.036s (+3.2%) 0.541s 16 1.95x
💻 Local Nitro 3.639s (+3.9%) 4.168s (+1.6%) 0.000s (-64.3% 🟢) 4.170s (+1.6%) 0.532s 15 2.03x
💻 Local Next.js (Turbopack) ⚠️ missing - - - - -
🐘 Postgres Next.js (Turbopack) ⚠️ missing - - - - -

▲ Production (Vercel)

World Framework Workflow Time TTFB Slurp Wall Time Overhead Samples vs Fastest
▲ Vercel 🥇 Express 3.324s (-21.4% 🟢) 5.091s (-9.9% 🟢) 0.000s (-54.5% 🟢) 5.561s (-11.8% 🟢) 2.237s 11 1.00x
▲ Vercel Next.js (Turbopack) 3.661s (-13.2% 🟢) 5.114s (-10.4% 🟢) 0.000s (-100.0% 🟢) 5.561s (-10.6% 🟢) 1.901s 11 1.10x
▲ Vercel Nitro 4.073s (+4.7%) 5.260s (-3.3%) 0.000s (-83.3% 🟢) 5.945s (~) 1.872s 11 1.23x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

Summary

Fastest Framework by World

Winner determined by most benchmark wins

World 🥇 Fastest Framework Wins
💻 Local Express 20/21
🐘 Postgres Nitro 13/21
▲ Vercel Express 11/21
Fastest World by Framework

Winner determined by most benchmark wins

Framework 🥇 Fastest World Wins
Express 🐘 Postgres 12/21
Next.js (Turbopack) ▲ Vercel 21/21
Nitro 🐘 Postgres 17/21
Column Definitions
  • Workflow Time: Runtime reported by workflow (completedAt - createdAt) - primary metric
  • TTFB: Time to First Byte - time from workflow start until first stream byte received (stream benchmarks only)
  • Slurp: Time from first byte to complete stream consumption (stream benchmarks only)
  • Wall Time: Total testbench time (trigger workflow + poll for result)
  • Overhead: Testbench overhead (Wall Time - Workflow Time)
  • Samples: Number of benchmark iterations run
  • vs Fastest: How much slower compared to the fastest configuration for this benchmark

Worlds:

  • 💻 Local: In-memory filesystem world (local development)
  • 🐘 Postgres: PostgreSQL database world (local development)
  • ▲ Vercel: Vercel production/preview deployment
  • 🌐 Turso: Community world (local development)
  • 🌐 MongoDB: Community world (local development)
  • 🌐 Redis: Community world (local development)
  • 🌐 Jazz: Community world (local development)

📋 View full workflow run

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 8, 2026

🧪 E2E Test Results

Some tests failed

Summary

Passed Failed Skipped Total
✅ ▲ Vercel Production 923 0 67 990
✅ 💻 Local Development 822 0 168 990
✅ 📦 Local Production 898 0 182 1080
✅ 🐘 Local Postgres 898 0 182 1080
✅ 🪟 Windows 82 0 8 90
❌ 🌍 Community Worlds 133 74 24 231
✅ 📋 Other 228 0 42 270
Total 3984 74 673 4731

❌ Failed Tests

🌍 Community Worlds (74 failed)

mongodb (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KNWTW014FVBJCBBRSMK0MNPC
  • webhookWorkflow | wrun_01KNWTW8HVHWMB2PE1G3Y60HHF
  • fetchWorkflow | wrun_01KNWV00A49HAW59EV6SG7SA4F
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KNWV4EB00EZDMNQKVEKY2W2B
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KNWVBGC89YZSF3EX3R3QJ5M4

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KNWTW014FVBJCBBRSMK0MNPC
  • webhookWorkflow | wrun_01KNWTW8HVHWMB2PE1G3Y60HHF
  • fetchWorkflow | wrun_01KNWV00A49HAW59EV6SG7SA4F
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KNWV4EB00EZDMNQKVEKY2W2B
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KNWVBGC89YZSF3EX3R3QJ5M4

turso (60 failed):

  • addTenWorkflow | wrun_01KNWTTTC7ADW0Z3VFY6J60AZD
  • addTenWorkflow | wrun_01KNWTTTC7ADW0Z3VFY6J60AZD
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KNWTW12PQPP3RYRAQ5B37YHJ
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KNWTV1K18065E2XYQXEZZWYZ
  • promiseRaceWorkflow | wrun_01KNWTV5EH9DZJ8DDSVT8X2W96
  • promiseAnyWorkflow | wrun_01KNWTV7Q3F1JNNHR0419RN390
  • importedStepOnlyWorkflow | wrun_01KNWTWCQ468NJ5AAG40G9SY6B
  • hookWorkflow | wrun_01KNWTVKTFZ4GZRSCEWEWGYZMF
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KNWTW014FVBJCBBRSMK0MNPC
  • webhookWorkflow | wrun_01KNWTW8HVHWMB2PE1G3Y60HHF
  • sleepingWorkflow | wrun_01KNWTWF0BVJNZSCDTKV663KXZ
  • parallelSleepWorkflow | wrun_01KNWTWVH6F9YJRWRESFGTBSWQ
  • nullByteWorkflow | wrun_01KNWTWZAZFMG6ZETZ16AR6VKQ
  • workflowAndStepMetadataWorkflow | wrun_01KNWTX1KR4P55JW6C0JW7KB4T
  • fetchWorkflow | wrun_01KNWV00A49HAW59EV6SG7SA4F
  • promiseRaceStressTestWorkflow | wrun_01KNWV04ABZGE8ZFCM0QDWE7AV
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KNWV3RZ5F0SYVSNQ4WTG6072
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KNWV4EB00EZDMNQKVEKY2W2B
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KNWV555MXR6277FK1B9QBSWC
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KNWV5TAYQEHJBD5W797QHY0Q
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KNWV645QXKB2X1TF3KKW0YXY
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KNWV6A0RVZG82QE9C21PK5TP
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KNWV6CV1GR5M4BK9MED2C18H
  • runClassSerializationWorkflow - Run instances serialize across workflow/step boundaries | wrun_01KNWV6RTS7PFKD7Y38K8B5G1P
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KNWV78HDHXZN5ZFJT7TSCECH
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KNWV7EFHDJTXQCZ0VPQ6YG5Y
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KNWV7MAS0S34SQG512FSZXMF
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KNWV7VDA82D4Q0YSCE92G14P
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KNWV82K5R6ZXAG143V30X93W
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KNWV89RXNYA270JRYA5EJE8K
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KNWV8HBXND65D22D43EG5K90
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KNWV8X9YG03ZGKZ72PY0858P
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KNWV95JFCPA2FZVR19XTXFQM
  • cancelRun - cancelling a running workflow | wrun_01KNWV9CN23PY7JRX1GRJ16ZVN
  • cancelRun via CLI - cancelling a running workflow | wrun_01KNWV9Q3QBY9TN83S8B7SGN9A
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KNWVA3ZMX7R16JH66VQK355M
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KNWVAT3HNBTXP51VEJGEGRVX
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KNWVB4AT04N1H6B1EPPAW10P
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KNWVBBNRYB4SAN0R8SNCVMRE
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KNWVBE5N8E9VV3QXNJR1Y08B
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KNWVBGC89YZSF3EX3R3QJ5M4
  • getterStepWorkflow - getter functions with "use step" directive | wrun_01KNWVBKW461TTGP0C6AA5Q68G

Details by Category

✅ ▲ Vercel Production
App Passed Failed Skipped
✅ astro 83 0 7
✅ example 83 0 7
✅ express 83 0 7
✅ fastify 83 0 7
✅ hono 83 0 7
✅ nextjs-turbopack 88 0 2
✅ nextjs-webpack 88 0 2
✅ nitro 83 0 7
✅ nuxt 83 0 7
✅ sveltekit 83 0 7
✅ vite 83 0 7
✅ 💻 Local Development
App Passed Failed Skipped
✅ astro-stable 76 0 14
✅ express-stable 76 0 14
✅ fastify-stable 76 0 14
✅ hono-stable 76 0 14
✅ nextjs-turbopack-canary 63 0 27
✅ nextjs-turbopack-stable 82 0 8
✅ nextjs-webpack-canary 63 0 27
✅ nextjs-webpack-stable 82 0 8
✅ nuxt-stable 76 0 14
✅ sveltekit-stable 76 0 14
✅ vite-stable 76 0 14
✅ 📦 Local Production
App Passed Failed Skipped
✅ astro-stable 76 0 14
✅ express-stable 76 0 14
✅ fastify-stable 76 0 14
✅ hono-stable 76 0 14
✅ nextjs-turbopack-canary 63 0 27
✅ nextjs-turbopack-stable 82 0 8
✅ nextjs-webpack-canary 63 0 27
✅ nextjs-webpack-stable 82 0 8
✅ nitro-stable 76 0 14
✅ nuxt-stable 76 0 14
✅ sveltekit-stable 76 0 14
✅ vite-stable 76 0 14
✅ 🐘 Local Postgres
App Passed Failed Skipped
✅ astro-stable 76 0 14
✅ express-stable 76 0 14
✅ fastify-stable 76 0 14
✅ hono-stable 76 0 14
✅ nextjs-turbopack-canary 63 0 27
✅ nextjs-turbopack-stable 82 0 8
✅ nextjs-webpack-canary 63 0 27
✅ nextjs-webpack-stable 82 0 8
✅ nitro-stable 76 0 14
✅ nuxt-stable 76 0 14
✅ sveltekit-stable 76 0 14
✅ vite-stable 76 0 14
✅ 🪟 Windows
App Passed Failed Skipped
✅ nextjs-turbopack 82 0 8
❌ 🌍 Community Worlds
App Passed Failed Skipped
✅ mongodb-dev 6 0 0
❌ mongodb 56 7 8
✅ redis-dev 6 0 0
❌ redis 56 7 8
✅ turso-dev 6 0 0
❌ turso 3 60 8
✅ 📋 Other
App Passed Failed Skipped
✅ e2e-local-dev-nest-stable 76 0 14
✅ e2e-local-postgres-nest-stable 76 0 14
✅ e2e-local-prod-nest-stable 76 0 14

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel
Copy link
Copy Markdown
Contributor

vercel bot commented Apr 8, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
example-nextjs-workflow-turbopack Ready Ready Preview, Comment Apr 10, 2026 11:15pm
example-nextjs-workflow-webpack Ready Ready Preview, Comment Apr 10, 2026 11:15pm
example-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-astro-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-express-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-fastify-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-hono-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-nitro-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-nuxt-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-sveltekit-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workbench-vite-workflow Ready Ready Preview, Comment Apr 10, 2026 11:15pm
workflow-docs Ready Ready Preview, Comment, Open in v0 Apr 10, 2026 11:15pm
workflow-swc-playground Ready Ready Preview, Comment Apr 10, 2026 11:15pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant