Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion .github/actions/cloud-setup-test-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ inputs:
bun-version:
description: Bun version to install (pinned to avoid GitHub API rate-limit flakes).
required: false
default: "canary"
# pinned: floating canary hangs `bun install` on hosted CI runners and
# writes lockfileVersion 2 which breaks --frozen-lockfile (#11184/#9454).
# Cloud Tests + cloud-e2e call this action without an override, so this
# default is what actually runs on those (queue-starved) lanes.
default: "1.3.14"
setup-db:
description: Start PGlite TCP server and run migrations.
required: false
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ concurrency:

env:
CI: "true"
BUN_VERSION: "canary"
# pinned: floating canary hangs `bun install` on hosted CI runners and writes
# lockfileVersion 2 which breaks --frozen-lockfile (#11184/#9454). This env
# drives the integration/unit/lint/cloud-live-e2e jobs' bun-version input.
BUN_VERSION: "1.3.14"
NODE_VERSION: "24.15.0"
NODE_NO_WARNINGS: "1"
NODE_OPTIONS: "--max-old-space-size=8192"
Expand Down
Loading