Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0b59295
Refactor e2e tests to no longer use "trigger" endpoint
TooTallNate Feb 6, 2026
b60c88f
fix: address CI failures - skip local stream tests, fix metadata asse…
TooTallNate Feb 6, 2026
7626d16
refactor: use manifest-based workflow ID lookup instead of constructi…
TooTallNate Feb 6, 2026
a37c73b
fix: add publicAssets config to hono/express/fastify so manifest.json…
TooTallNate Feb 6, 2026
245bcd9
refactor: update e2e tests for WORKFLOW_PUBLIC_MANIFEST and clean up
TooTallNate Feb 6, 2026
bd013ee
debug: add logging for WORKFLOW_PUBLIC_MANIFEST env var and manifest …
TooTallNate Feb 6, 2026
1dcf51e
fix: add WORKFLOW_PUBLIC_MANIFEST to turbo.json env so Vercel builds …
TooTallNate Feb 6, 2026
10e4f9d
fix: set local world data dir explicitly instead of discovering it
TooTallNate Feb 6, 2026
b00fc87
fix: re-add _workflows.js side-effect import for hono/express/fastify…
TooTallNate Feb 6, 2026
0f1154c
refactor: remove triggerWorkflow/getWorkflowReturnValue, use start()/…
TooTallNate Feb 6, 2026
6627906
fix: add comment about empty args behavior in startWorkflowViaHttp
TooTallNate Feb 6, 2026
08ea5b1
changeset
TooTallNate Feb 6, 2026
1812f62
fix: refactor bench.bench.ts to use start() directly instead of /api/…
TooTallNate Feb 6, 2026
c0f1714
fix: add VERCEL_DEPLOYMENT_ID, version.ts, and timeout to Vercel benc…
TooTallNate Feb 6, 2026
d19320d
debug: add verbose logging and fetch timeout to bench.bench.ts
TooTallNate Feb 6, 2026
a213412
fix: use static file copy for Nitro prod manifest instead of readFile…
TooTallNate Feb 6, 2026
92dcd4e
fix: use physical handler file for Nitro prod manifest instead of vir…
TooTallNate Feb 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/strong-walls-stand.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
1 change: 1 addition & 0 deletions .github/workflows/benchmark-community-world.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'

steps:
- name: Checkout Repo
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ jobs:
path: |
node_modules
packages/*/dist
packages/core/src/version.ts
retention-days: 1

# Phase 2a: Local benchmarks (no postgres)
Expand All @@ -157,6 +158,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -251,6 +253,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'
WORKFLOW_TARGET_WORLD: "@workflow/world-postgres"
WORKFLOW_POSTGRES_URL: "postgres://world:world@localhost:5432/world"

Expand Down Expand Up @@ -386,6 +389,7 @@ jobs:
env:
DEPLOYMENT_URL: ${{ steps.waitForDeployment.outputs.deployment-url }}
APP_NAME: ${{ matrix.app.name }}
VERCEL_DEPLOYMENT_ID: ${{ steps.waitForDeployment.outputs.deployment-id }}
WORKFLOW_VERCEL_ENV: ${{ github.ref == 'refs/heads/main' && 'production' || 'preview' }}
WORKFLOW_VERCEL_AUTH_TOKEN: ${{ secrets.VERCEL_LABS_TOKEN }}
WORKFLOW_VERCEL_TEAM: "team_nO2mCG4W8IxPIeKoSsqwAxxB"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -297,6 +298,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'

steps:
- name: Checkout Repo
Expand Down Expand Up @@ -360,6 +362,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'

steps:
- name: Checkout Repo
Expand Down Expand Up @@ -441,6 +444,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'
WORKFLOW_TARGET_WORLD: "@workflow/world-postgres"
WORKFLOW_POSTGRES_URL: "postgres://world:world@localhost:5432/world"

Expand Down Expand Up @@ -507,6 +511,7 @@ jobs:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
WORKFLOW_PUBLIC_MANIFEST: '1'

steps:
- name: Checkout Repo
Expand Down
Loading