Skip to content
Merged
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
15 changes: 12 additions & 3 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
# =========================================================================
pg-tests:
needs: build
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 15
strategy:
fail-fast: false
Expand Down Expand Up @@ -194,6 +194,9 @@ jobs:
PGPORT: 5432
PGUSER: postgres
PGPASSWORD: password
# Pin an explicit heap cap: on smaller runners Node's memory-derived
# default can land near ~2GB and OOM Jest.
NODE_OPTIONS: '--max-old-space-size=4096'

services:
pg_db:
Expand Down Expand Up @@ -259,7 +262,7 @@ jobs:
# =========================================================================
integration-tests:
needs: build
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 15
strategy:
fail-fast: false
Expand Down Expand Up @@ -296,6 +299,9 @@ jobs:
AWS_ACCESS_KEY: minioadmin
AWS_SECRET_KEY: minioadmin
AWS_REGION: us-east-1
# Pin an explicit heap cap: on smaller runners Node's memory-derived
# default can land near ~2GB and OOM Jest.
NODE_OPTIONS: '--max-old-space-size=4096'

services:
pg_db:
Expand Down Expand Up @@ -375,7 +381,7 @@ jobs:
# =========================================================================
ai-tests:
needs: build
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 15
strategy:
fail-fast: false
Expand All @@ -389,6 +395,9 @@ jobs:
PGPORT: 5432
PGUSER: postgres
PGPASSWORD: password
# Pin an explicit heap cap: on smaller runners Node's memory-derived
# default can land near ~2GB and OOM Jest.
NODE_OPTIONS: '--max-old-space-size=4096'

services:
pg_db:
Expand Down
Loading