') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); fix: include next config in web package by adriandlam · Pull Request #646 · vercel/workflow · GitHub
Skip to content

fix: include next config in web package - #646

Merged
adriandlam merged 2 commits into
mainfrom
fix/web-ui-using-next-config
Dec 18, 2025
Merged

fix: include next config in web package#646
adriandlam merged 2 commits into
mainfrom
fix/web-ui-using-next-config

Conversation

@adriandlam

Copy link
Copy Markdown
Contributor

Next.js uses findUp which crawls and looks for a next.config.ts. The problem was that @workflow/web was missing a next.config.ts when built and so when running it inside a Next.js project, would resolve to the current Next.js project's next.config.ts.

fixes#115 and #381

@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 81f0518

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 5 packages
NameType
@workflow/webPatch
@workflow/cliPatch
workflowPatch
@workflow/world-testingPatch
@workflow/aiPatch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel

vercelBot commented Dec 18, 2025

Copy link
Copy Markdown
Contributor

@github-actions

github-actionsBot commented Dec 18, 2025

Copy link
Copy Markdown
Contributor

📊 Benchmark Results

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

workflow with no steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Starter🥇 Next.js (Turbopack)0.039s (+4.3%)1.015s (~)0.975s101.00x
💻 LocalNext.js (Turbopack)0.040s (-6.4% 🟢)1.017s (~)0.977s101.02x
🌐 RedisNext.js (Turbopack)0.041s (-2.1%)1.017s (~)0.976s101.06x
💻 LocalNitro0.042s (+41.9% 🔺)1.006s (~)0.964s101.08x
💻 LocalExpress0.044s (+2.3%)1.007s (~)0.963s101.11x
🌐 MongoDBNext.js (Turbopack)0.053s (-55.5% 🟢)1.015s (~)0.961s101.36x
🌐 TursoNext.js (Turbopack)0.063s (+5.9% 🔺)1.014s (~)0.951s101.59x
🐘 PostgresNext.js (Turbopack)0.145s (-50.5% 🟢)1.019s (-2.2%)0.874s103.70x
🐘 PostgresNitro0.214s (-30.3% 🟢)1.028s (+1.4%)0.814s105.45x
🐘 PostgresExpress0.424s (+9.0% 🔺)1.012s (~)0.588s1010.82x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express0.497s (-1.6%)1.483s (-3.5%)0.986s101.00x
▲ VercelNext.js (Turbopack)0.530s (-20.5% 🟢)1.685s (-5.1% 🟢)1.155s101.07x
▲ VercelNitro0.543s (~)1.448s (+1.7%)0.905s101.09x

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

workflow with 1 step

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Next.js (Turbopack)1.096s (~)2.011s (~)0.915s101.00x
🌐 StarterNext.js (Turbopack)1.101s (+1.6%)2.011s (~)0.910s101.00x
🌐 RedisNext.js (Turbopack)1.101s (~)2.012s (~)0.911s101.01x
💻 LocalNitro1.111s (+3.6%)2.006s (~)0.895s101.01x
💻 LocalExpress1.112s (~)2.007s (~)0.895s101.02x
🌐 TursoNext.js (Turbopack)1.272s (~)2.011s (~)0.739s101.16x
🌐 MongoDBNext.js (Turbopack)1.315s (+1.2%)2.014s (~)0.699s101.20x
🐘 PostgresNext.js (Turbopack)1.876s (-7.1% 🟢)2.117s (-22.1% 🟢)0.241s101.71x
🐘 PostgresExpress2.290s (+1.7%)3.012s (~)0.722s102.09x
🐘 PostgresNitro2.477s (+15.3% 🔺)3.015s (~)0.537s102.26x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.641s (-0.7%)3.599s (+1.0%)0.958s101.00x
▲ VercelNext.js (Turbopack)2.709s (+2.1%)3.819s (+4.2%)1.110s101.03x
▲ VercelNitro2.941s (+13.6% 🔺)3.825s (+8.8% 🔺)0.884s101.11x

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

workflow with 10 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Starter🥇 Next.js (Turbopack)10.629s (~)11.013s (~)0.384s51.00x
💻 LocalNext.js (Turbopack)10.670s (~)11.014s (~)0.344s51.00x
🌐 RedisNext.js (Turbopack)10.680s (~)11.018s (~)0.338s51.00x
💻 LocalExpress10.787s (~)11.014s (~)0.227s51.01x
💻 LocalNitro10.790s (+2.7%)11.012s (~)0.222s51.02x
🌐 TursoNext.js (Turbopack)12.189s (~)13.023s (~)0.835s51.15x
🌐 MongoDBNext.js (Turbopack)12.246s (~)13.024s (~)0.778s51.15x
🐘 PostgresNext.js (Turbopack)15.315s (+4.2%)16.037s (+5.2% 🔺)0.722s51.44x
🐘 PostgresNitro16.145s (-4.2%)16.834s (-2.4%)0.688s51.52x
🐘 PostgresExpress20.162s (-0.6%)21.037s (~)0.875s51.90x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express21.418s (+1.3%)22.479s (+2.4%)1.061s51.00x
▲ VercelNext.js (Turbopack)21.610s (+2.4%)22.377s (+2.3%)0.768s51.01x
▲ VercelNitro21.879s (+2.2%)22.726s (+2.7%)0.847s51.02x

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

Promise.all with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.365s (+0.6%)2.010s (~)0.646s151.00x
🌐 StarterNext.js (Turbopack)1.373s (+2.6%)2.009s (~)0.636s151.01x
💻 LocalNext.js (Turbopack)1.386s (-0.6%)2.012s (~)0.626s151.02x
💻 LocalNitro1.401s (+6.3% 🔺)2.006s (~)0.604s151.03x
💻 LocalExpress1.410s (~)2.006s (~)0.596s151.03x
🐘 PostgresNext.js (Turbopack)1.998s (+18.0% 🔺)2.164s (+7.4% 🔺)0.166s141.46x
🌐 MongoDBNext.js (Turbopack)2.140s (+0.6%)3.013s (~)0.873s101.57x
🌐 TursoNext.js (Turbopack)2.199s (-1.0%)3.014s (~)0.814s101.61x
🐘 PostgresNitro2.307s (+28.7% 🔺)3.016s (+40.5% 🔺)0.709s101.69x
🐘 PostgresExpress2.607s (+5.1% 🔺)3.011s (~)0.403s101.91x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Next.js (Turbopack)2.913s (~)3.880s (+1.8%)0.966s81.00x
▲ VercelNitro3.050s (-2.3%)3.861s (-4.0%)0.811s81.05x
▲ VercelExpress3.775s (+33.9% 🔺)4.592s (+20.5% 🔺)0.817s81.30x

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

Promise.all with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Next.js (Turbopack)2.180s (+4.6%)3.146s (+8.4% 🔺)0.965s101.00x
💻 LocalExpress2.213s (~)3.154s (~)0.941s101.01x
💻 LocalNitro2.225s (+13.4% 🔺)3.172s (+52.8% 🔺)0.948s101.02x
🌐 RedisNext.js (Turbopack)2.489s (~)3.015s (~)0.526s101.14x
🌐 StarterNext.js (Turbopack)2.489s (+1.8%)3.013s (~)0.523s101.14x
🐘 PostgresNext.js (Turbopack)2.644s (-4.8%)3.017s (~)0.373s101.21x
🐘 PostgresExpress2.949s (+2.9%)3.349s (+11.2% 🔺)0.400s91.35x
🐘 PostgresNitro2.993s (+15.7% 🔺)3.352s (+10.9% 🔺)0.360s91.37x
🌐 MongoDBNext.js (Turbopack)4.649s (~)5.185s (~)0.535s62.13x
🌐 TursoNext.js (Turbopack)4.739s (+0.8%)5.187s (~)0.448s62.17x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Next.js (Turbopack)3.249s (+9.2% 🔺)3.919s (+5.3% 🔺)0.671s81.00x
▲ VercelExpress3.776s (+14.7% 🔺)4.407s (+11.5% 🔺)0.631s71.16x
▲ VercelNitro332.020s (+10058.7% 🔺)333.181s (+8539.4% 🔺)1.161s1102.20x

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

Promise.race with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Starter🥇 Next.js (Turbopack)1.361s (+1.6%)2.007s (~)0.646s151.00x
🌐 RedisNext.js (Turbopack)1.379s (+1.6%)2.010s (~)0.631s151.01x
💻 LocalNext.js (Turbopack)1.404s (+0.6%)2.015s (~)0.611s151.03x
💻 LocalExpress1.411s (-1.0%)2.007s (~)0.596s151.04x
💻 LocalNitro1.438s (+8.7% 🔺)2.005s (~)0.567s151.06x
🐘 PostgresNext.js (Turbopack)1.714s (+0.9%)2.015s (~)0.300s151.26x
🐘 PostgresExpress1.768s (-8.8% 🟢)2.009s (-10.0% 🟢)0.241s151.30x
🐘 PostgresNitro1.830s (~)2.011s (~)0.181s151.34x
🌐 MongoDBNext.js (Turbopack)2.156s (~)3.013s (~)0.857s101.58x
🌐 TursoNext.js (Turbopack)2.216s (-0.7%)3.013s (~)0.797s101.63x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Next.js (Turbopack)2.740s (+4.2%)3.794s (+2.8%)1.055s81.00x
▲ VercelExpress2.799s (+4.4%)3.604s (-3.3%)0.805s91.02x
▲ VercelNitro3.059s (+17.0% 🔺)3.860s (+9.3% 🔺)0.801s81.12x

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

Promise.race with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Express2.247s (-5.6% 🟢)3.206s (~)0.960s101.00x
💻 LocalNext.js (Turbopack)2.264s (+4.4%)3.198s (+5.2% 🔺)0.934s101.01x
💻 LocalNitro2.354s (+15.3% 🔺)3.286s (+34.5% 🔺)0.932s101.05x
🌐 StarterNext.js (Turbopack)2.462s (+0.8%)3.010s (~)0.548s101.10x
🌐 RedisNext.js (Turbopack)2.490s (~)3.013s (~)0.523s101.11x
🐘 PostgresExpress2.529s (-3.1%)3.046s (+1.1%)0.517s101.13x
🐘 PostgresNitro2.575s (+2.2%)3.020s (~)0.445s101.15x
🐘 PostgresNext.js (Turbopack)2.650s (+2.8%)3.019s (~)0.369s101.18x
🌐 MongoDBNext.js (Turbopack)4.682s (~)5.181s (~)0.500s62.08x
🌐 TursoNext.js (Turbopack)4.695s (~)5.181s (~)0.486s62.09x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.179s (+6.6% 🔺)3.655s (+1.9%)0.476s91.00x
▲ VercelNext.js (Turbopack)3.275s (+7.6% 🔺)3.965s (+3.6%)0.690s81.03x
▲ VercelExpress5.621s (+86.4% 🔺)6.187s (+68.9% 🔺)0.567s61.77x

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

Stream Benchmarks(includes TTFB metrics)
workflow with stream

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Next.js (Turbopack)0.142s (-1.5%)1.003s (~)0.018s (-6.7% 🟢)1.032s (~)0.890s101.00x
🌐 RedisNext.js (Turbopack)0.147s (+1.5%)1.004s (~)0.000s (~)1.013s (~)0.866s101.04x
🌐 StarterNext.js (Turbopack)0.148s (+20.6% 🔺)1.006s (~)0.000s (-100.0% 🟢)1.013s (~)0.865s101.05x
💻 LocalExpress0.175s (-3.7%)0.993s (~)0.017s (-1.1%)1.024s (~)0.849s101.24x
💻 LocalNitro0.178s (+71.7% 🔺)0.992s (-0.7%)0.016s (+17.5% 🔺)1.022s (~)0.844s101.25x
🌐 TursoNext.js (Turbopack)0.457s (-9.4% 🟢)0.994s (+5.3% 🔺)0.000s (NaN%)1.013s (~)0.556s103.22x
🌐 MongoDBNext.js (Turbopack)0.462s (-8.4% 🟢)0.988s (+4.2%)0.000s (+Infinity% 🔺)1.013s (~)0.551s103.26x
🐘 PostgresNext.js (Turbopack)1.082s (+34.0% 🔺)1.857s (+133.2% 🔺)0.000s (NaN%)1.917s (+88.6% 🔺)0.835s107.63x
🐘 PostgresNitro1.130s (-11.0% 🟢)1.913s (+7.9% 🔺)0.000s (NaN%)2.013s (~)0.883s107.97x
🐘 PostgresExpress2.482s (+3.7%)2.560s (-3.4%)0.000s (-100.0% 🟢)3.013s (~)0.531s1017.51x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Next.js (Turbopack)2.529s (-8.5% 🟢)3.007s (-8.2% 🟢)0.527s (+61.8% 🔺)3.950s (-3.1%)1.422s101.00x
▲ VercelNitro2.558s (-1.8%)3.221s (+1.4%)0.208s (-53.9% 🟢)3.857s (-6.9% 🟢)1.299s101.01x
▲ VercelExpress2.601s (-1.8%)3.037s (-3.8%)0.687s (+55.3% 🔺)4.206s (+3.4%)1.604s101.03x

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

Summary

Fastest Framework by World

Winner determined by most benchmark wins

World🥇 Fastest FrameworkWins
💻 LocalNext.js (Turbopack)7/8
🐘 PostgresNext.js (Turbopack)7/8
▲ VercelNext.js (Turbopack)4/8
Fastest World by Framework

Winner determined by most benchmark wins

Framework🥇 Fastest WorldWins
Express💻 Local8/8
Next.js (Turbopack)💻 Local4/8
Nitro💻 Local8/8
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
  • 🌐 Starter: Community world (local development)
  • 🌐 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

github-actionsBot commented Dec 18, 2025

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production286011297
✅ 💻 Local Development26208270
✅ 📦 Local Production26208270
✅ 🐘 Local Postgres26208270
✅ 🪟 Windows270027
❌ 🌍 Community Worlds109110120
Total120811351254

❌ Failed Tests

🌍 Community Worlds (11 failed)

mongodb (1 failed):

  • webhookWorkflow

redis (1 failed):

  • webhookWorkflow

starter (8 failed):

  • addTenWorkflow
  • addTenWorkflow
  • retryAttemptCounterWorkflow
  • crossFileErrorWorkflow - stack traces work across imported modules
  • hookCleanupTestWorkflow - hook token reuse after workflow completion
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars)
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step

turso (1 failed):

  • webhookWorkflow

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro2601
✅ example2601
✅ express2601
✅ fastify2601
✅ hono2601
✅ nextjs-turbopack2601
✅ nextjs-webpack2601
✅ nitro2601
✅ nuxt2601
✅ sveltekit2601
✅ vite2601
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable2601
✅ express-stable2601
✅ fastify-stable2601
✅ hono-stable2601
✅ nextjs-turbopack-stable2700
✅ nextjs-webpack-stable2700
✅ nitro-stable2601
✅ nuxt-stable2601
✅ sveltekit-stable2601
✅ vite-stable2601
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable2601
✅ express-stable2601
✅ fastify-stable2601
✅ hono-stable2601
✅ nextjs-turbopack-stable2700
✅ nextjs-webpack-stable2700
✅ nitro-stable2601
✅ nuxt-stable2601
✅ sveltekit-stable2601
✅ vite-stable2601
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable2601
✅ express-stable2601
✅ fastify-stable2601
✅ hono-stable2601
✅ nextjs-turbopack-stable2700
✅ nextjs-webpack-stable2700
✅ nitro-stable2601
✅ nuxt-stable2601
✅ sveltekit-stable2601
✅ vite-stable2601
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack2700
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev300
❌ mongodb2610
✅ redis-dev300
❌ redis2610
✅ starter-dev300
❌ starter1980
✅ turso-dev300
❌ turso2610

📋 View full workflow run

@adriandlam
adriandlam merged commit f396833 into mainDec 18, 2025
141 of 144 checks passed
@adriandlam
adriandlam deleted the fix/web-ui-using-next-config branch December 18, 2025 23:10
pranaygp added a commit that referenced this pull request Jul 21, 2026
…eview
Point the world-vercel HTTP client at the workflow-server#646 preview
deployment (head a588ed3d) so this PR's e2e/integration lanes exercise
the real batched POST /api/v4/runs/:runId/events/batch backend before
#646 is promoted to production.
Probed pre-pin: POST /api/v4/runs/<fake>/events/batch returns 401 (auth),
not a route-404 — the batch route is served by the preview.
This is an intentional review-time pin. The CI lint rule requiring
WORKFLOW_SERVER_URL_OVERRIDE to be empty on `main` will fail while this
is present; that failure is the deliberate merge gate, not something to
work around. Removal is a single-line revert to '' once #646 deploys to
production.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
pranaygp added a commit that referenced this pull request Jul 22, 2026
…alias
Point WORKFLOW_SERVER_URL_OVERRIDE at the branch-tracking alias
https://workflow-server-git-pgp-batch-step-transitions.vercel.sh instead of
the stale v1 deployment URL (8sp9l2esp predates the fence + full grammar).
The alias always resolves to the latest deployment of the server branch, so
future #646 pushes need no re-pin here. Authenticated probe: the batch route
returns 302 -> Vercel SSO (protected, route exists), not a 404.
Floats-with-branch caveat is documented (a server force-push mid-CI could
shift the backend under a running e2e round — acceptable for review). The
"No Test Overrides" lint intentionally FAILS while this pin is present — the
deliberate merge gate.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Sign up for freeto 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.

workflow inspect runs --web does not load .env.local

2 participants

@adriandlam@VaguelySerious