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: 15 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

# Durability is irrelevant for throwaway CI databases. Disabling fsync
# and synchronous commit avoids checkpoint I/O stalls on CI runners.
- name: Tune Postgres for CI (disable durability)
run: pnpm --filter pgpm exec node dist/index.js tune --yes

- name: Seed app_user
run: |
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
Expand Down Expand Up @@ -331,6 +336,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

# Durability is irrelevant for throwaway CI databases. Disabling fsync
# and synchronous commit avoids checkpoint I/O stalls on CI runners.
- name: Tune Postgres for CI (disable durability)
run: pnpm --filter pgpm exec node dist/index.js tune --yes

- name: Seed app_user
run: |
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
Expand Down Expand Up @@ -402,6 +412,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

# Durability is irrelevant for throwaway CI databases. Disabling fsync
# and synchronous commit avoids checkpoint I/O stalls on CI runners.
- name: Tune Postgres for CI (disable durability)
run: pnpm --filter pgpm exec node dist/index.js tune --yes

- name: Seed app_user
run: |
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
Expand Down
Loading