Nx
Enterprise
Nx
Overview
Sign in / Sign up
Open main menu
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Status
Fix filter
Filter
Fuzzy
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
In progress
36302
180addf6 Revert "chore(repo): use the dependsOn spread token in gradle and maven e2e projects" This reverts commit 95c30b80d20f8b0064d5c0891ce1193850a9b5f9.
by FrozenPandaz
F
Failed
36302
Flaky task
→
180addf6 Revert "chore(repo): use the dependsOn spread token in gradle and maven e2e projects" This reverts commit 95c30b80d20f8b0064d5c0891ce1193850a9b5f9.
by FrozenPandaz
F
Succeeded
36302
1e9180a2 Revert "fix(core): close previous daemon log handles before reopening in startInBackground" This reverts commit a269c323942a41c3117c30a65a6ead371b3b1433.
by FrozenPandaz
F
Succeeded
36302
1e9180a2 Revert "fix(core): close previous daemon log handles before reopening in startInBackground" This reverts commit a269c323942a41c3117c30a65a6ead371b3b1433.
by FrozenPandaz
F
Succeeded
36302
18e5c85b chore(repo): tighten local-registry comments in release e2e tests
by FrozenPandaz
F
Succeeded
36302
18e5c85b chore(repo): tighten local-registry comments in release e2e tests
by FrozenPandaz
F
Succeeded
36302
18e5c85b chore(repo): tighten local-registry comments in release e2e tests
by FrozenPandaz
F
Canceled
36302
c2a8e24a chore(repo): use the dependsOn spread token in gradle and maven e2e projects
by FrozenPandaz
F
Canceled
36302
c2a8e24a chore(repo): use the dependsOn spread token in gradle and maven e2e projects
by FrozenPandaz
F
Succeeded
36302
668ba9a4 chore(repo): write lerna e2e pnpm overrides to pnpm-workspace.yaml pnpm 11 no longer reads the pnpm field in package.json, so the override forcing lerna to use the locally published nx was silently ignored and the smoke test ran against the npmjs-published nx instead.
by FrozenPandaz
F
Failed
36302
Fix available
→
7987fe76 chore(repo): fix e2e installs and npm publish auth under pnpm 11 - pnpm 11 ignores .npmrc prefer-frozen-lockfile, so set pnpm_config_frozen_lockfile=false at the env level - npx strips protected _authToken env keys, so npm publish needs the local registry token in the workspace .npmrc
by FrozenPandaz
F
Canceled
36302
7987fe76 chore(repo): fix e2e installs and npm publish auth under pnpm 11 - pnpm 11 ignores .npmrc prefer-frozen-lockfile, so set pnpm_config_frozen_lockfile=false at the env level - npx strips protected _authToken env keys, so npm publish needs the local registry token in the workspace .npmrc
by FrozenPandaz
F
Canceled
36302
7987fe76 chore(repo): fix e2e installs and npm publish auth under pnpm 11 - pnpm 11 ignores .npmrc prefer-frozen-lockfile, so set pnpm_config_frozen_lockfile=false at the env level - npx strips protected _authToken env keys, so npm publish needs the local registry token in the workspace .npmrc
by FrozenPandaz
F
Failed
36302
0568db5c fix(js): restore per-file tarball sizes in release publish under pnpm 11
by FrozenPandaz
F
Canceled
36302
210e7d73 fix(js): point pnpm 11 at the plugin e2e local registry in startLocalRegistry The helper generated plugin e2e suites use to route installs at their local verdaccio sets registry env vars for npm, bun, and yarn, but pnpm 11 no longer reads npm_config_registry - so 'pnpm add <plugin>@e2e' resolved the plugin from the wrong registry and 404ed. Set pnpm_config_registry and the pnpm auth-token env var alongside the existing ones.
by FrozenPandaz
F
Failed
36302
cce58dbe chore(repo): disable pnpm's minimum release age policy in e2e pnpm 11's minimumReleaseAge default rejects packages published less than a day ago, and everything e2e installs was just published to the local registry. Loose mode papers over it by auto-writing minimumReleaseAgeExclude entries during pnpm add, but tests that rewrite pnpm-workspace.yaml (e.g. the release suites setting up workspaces) lose those entries and the next lockfile verification fails with ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION on every @nx package. Set pnpm_config_minimum_release_age=0 alongside the other pnpm env config so the policy is off for the whole harness.
by FrozenPandaz
F
Failed
36302
b655c89d fix(core): skip allowBuilds writes when pnpm-workspace.yaml has parse errors A syntactically invalid pnpm-workspace.yaml whose root is still map-shaped (unclosed quote, tab indentation, duplicate keys) passes the YAMLMap guard but carries parse errors, and stringifying such a document throws 'Document with errors cannot be stringified' - crashing generator runs with a message that names neither the file nor the operation. Bail out on parse errors like the malformed-root case; pnpm's own error on the broken file remains the actionable signal. Also fixes review findings from the PR review: the worker-deserialized error test now injects its plain-object tuple after construction so the formatter's stack fallback is genuinely exercised (previously the constructor coercion made that branch unreachable in the test), and corrects stale postinstall descriptions (@nestjs/core dropped its funding postinstall in 11.1.25; @swc/core installs a wasm fallback and unrs-resolver fetches a binding rather than compiling).
by FrozenPandaz
F
Failed
36302
9fafaa3d chore(repo): route the local release around pnpm run's registry stomping populate-storage relied on the verdaccio executor's ~/.npmrc write in two hidden ways that surfaced once local-registry-e2e stopped writing it: 'pnpm nx-release' is a run-script, and pnpm run replaces the inherited npm_config_registry with its own file-resolved registry (npmjs.org), tripping nx-release's '--local was passed and registry is not localhost' check; and npm publish found its auth token in ~/.npmrc. Invoke the release through pnpm exec (which does not touch the env) and provide the registry + auth token env vars directly, including the pnpm_config_* forms pnpm 11 reads.
by FrozenPandaz
F
Canceled
36302
9fafaa3d chore(repo): route the local release around pnpm run's registry stomping populate-storage relied on the verdaccio executor's ~/.npmrc write in two hidden ways that surfaced once local-registry-e2e stopped writing it: 'pnpm nx-release' is a run-script, and pnpm run replaces the inherited npm_config_registry with its own file-resolved registry (npmjs.org), tripping nx-release's '--local was passed and registry is not localhost' check; and npm publish found its auth token in ~/.npmrc. Invoke the release through pnpm exec (which does not touch the env) and provide the registry + auth token env vars directly, including the pnpm_config_* forms pnpm 11 reads.
by FrozenPandaz
F
Canceled
36302
9fafaa3d chore(repo): route the local release around pnpm run's registry stomping populate-storage relied on the verdaccio executor's ~/.npmrc write in two hidden ways that surfaced once local-registry-e2e stopped writing it: 'pnpm nx-release' is a run-script, and pnpm run replaces the inherited npm_config_registry with its own file-resolved registry (npmjs.org), tripping nx-release's '--local was passed and registry is not localhost' check; and npm publish found its auth token in ~/.npmrc. Invoke the release through pnpm exec (which does not touch the env) and provide the registry + auth token env vars directly, including the pnpm_config_* forms pnpm 11 reads.
by FrozenPandaz
F
Previous page
Previous
Next
Next page