ci: pin devcontainer pnpm to 10 (fix ERR_PNPM_IGNORED_BUILDS)#102
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the devcontainer configuration to pin the pnpm feature version to 10 in order to restore warn-not-fail behavior for ignored dependency build scripts and unblock CI. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
AshleyDawson
self-requested a review
July 6, 2026 14:48
AshleyDawson
approved these changes
Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
mainCI (build_and_tag) fails at the devcontainerpostCreateCommand(pnpm install):Nothing in the repo changed.
.devcontainer/devcontainer.jsonpinned the pnpm feature to"latest", which rolled to pnpm 11. pnpm 11 defaultsstrictDepBuildstotrue, so ignored dependency build scripts now hard-fail the install (exit 1) instead of just warning as pnpm 10 did. The repo has noonlyBuiltDependencies/allowBuildsallowlist, so the install aborts and the whole job dies.Fix (lightest-weight)
Pin the devcontainer pnpm feature to
"10"— reverts to warn-not-fail behavior and unblocks CI without touching dependency config.Follow-up (not in this PR)
Longer term, add a build-scripts allowlist to
package.jsonso the repo is safe to move to pnpm 11:🤖 Generated with Claude Code
Summary by Sourcery
CI: