Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/ci-host.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
- ".github/workflows/ci-host.yaml"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
# CI boot path: see comment on the equivalent block in ci.yaml.
- ".mise.toml"
- ".github/actions/**"
Expand Down Expand Up @@ -149,7 +150,7 @@ jobs:
use_cache=true
while IFS= read -r file; do
case "$file" in
packages/realm-server/*|packages/runtime-common/*|packages/postgres/*|packages/boxel-ui/*|package.json|pnpm-lock.yaml)
packages/realm-server/*|packages/runtime-common/*|packages/postgres/*|packages/boxel-ui/*|package.json|pnpm-lock.yaml|pnpm-workspace.yaml)
use_cache=false
echo "Index-behavior change detected: $file"
break
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-software-factory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
- "packages/software-factory/**"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
# CI boot path: see comment on the equivalent block in ci.yaml.
- ".mise.toml"
- ".github/actions/**"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
- 'packages/runtime-common/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'pnpm-workspace.yaml'
# CI boot path. Each gated suite runs `./.github/actions/init`
# (which calls `jdx/mise-action`, sourcing `.mise.toml` for tool
# versions) and then `mise run test-services:*` (which sources
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-boxel-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- ".github/workflows/pr-boxel-ui.yml"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"

permissions:
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/preview-host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- ".github/workflows/preview-host.yml"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"

concurrency:
group: preview-host-${{ github.head_ref || github.run_id }}
Expand Down
9 changes: 9 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,15 @@ catalog:
yaml: ^2.5.1
yargs: ^17.5.1

# pnpm 11 defaults this to `install`, making every `pnpm run` first check
# node_modules freshness and silently run a full install when the check
# fails. The check never passes in CI, so each of the ~9 services `run-p`
# boots kicks off its own concurrent workspace-wide install into the same
# node_modules; when they collide badly enough, start:matrix never reaches
# `docker run` and the shard dies with "Failed to reach Synapse". Disabling
# restores pnpm 10 behavior: scripts run against node_modules as-is.
verifyDepsBeforeRun: false

minimumReleaseAge: 1440
minimumReleaseAgeExclude:
- "@glint/ember-tsc"
Expand Down
Loading