feat(pnpm): add frozen install adapter - #43
Merged
Windsor Nguyễn (windsornguyen) merged 2 commits intoAug 13, 2026
Conversation
Windsor Nguyễn (windsornguyen)
requested review from
annyzhou and
Catherine Di (cathydi)
August 6, 2026 20:36
Windsor Nguyễn (windsornguyen)
force-pushed
the
feat/pnpm-adapter-m0
branch
from
August 8, 2026 08:11
8832fcf to
e9119be
Compare
Windsor Nguyễn (windsornguyen)
removed request for
annyzhou and
Catherine Di (cathydi)
August 8, 2026 22:28
Windsor Nguyễn (windsornguyen)
force-pushed
the
feat/pnpm-adapter-m0
branch
from
August 11, 2026 01:18
31a0e75 to
0754448
Compare
Dedalus (dedalus-ai)
approved these changes
Aug 11, 2026
Windsor Nguyễn (windsornguyen)
force-pushed
the
feat/pnpm-adapter-m0
branch
2 times, most recently
from
August 11, 2026 01:40
a62d225 to
ed67b3b
Compare
Dedalus (dedalus-ai)
approved these changes
Aug 11, 2026
Windsor Nguyễn (windsornguyen)
force-pushed
the
feat/pnpm-adapter-m0
branch
from
August 11, 2026 01:52
47b619f to
23d3cdf
Compare
Dedalus (dedalus-ai)
approved these changes
Aug 11, 2026
1 task
Golden files are regenerated and compared byte-for-byte by their test harnesses, so the injected preamble changed the tested bytes and broke 17 starlark golden tests. Exclude *.golden and *.golden.md from the source inventory and restore the generated golden content. Co-authored-by: Codesmith <codesmith-bot@users.noreply.github.com>
Windsor Nguyễn (windsornguyen)
force-pushed
the
feat/pnpm-adapter-m0
branch
from
August 12, 2026 23:05
23d3cdf to
0143630
Compare
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.
Depends on #42. Implements the first executable milestone in RFC 0001.
What does this change?
This PR adds a first-party pnpm toolchain and frozen-install action.
package.json#packageManager,engines.node, andpnpm-lock.yamlbefore installation.HOME,PNPM_HOME, Corepack, XDG, store, and npm authentication state.A consumer toolchain must use an exact tested pnpm version and digest. Bessemer does not provide a mutable
latestsetting.This milestone delegates resolution and installation to pinned pnpm. It does not parse the lockfile into the Bessemer graph or materialize packages from the content-addressed store.
Security and correctness boundaries
Lifecycle scripts run inside the single pnpm install action. The action can use the network on a cache miss. A cache hit depends on the declared toolchain and lockfile inputs.
How was it tested?
pnpm run ci checkpassed all 33 tests, generated-action checks, and workflow-security checks.Real frozen installs passed with pnpm 10.30.3 and pnpm 11.20.0.
Cross-version and mismatched-artifact cases returned errors before installation.
Starlark lint and type checks passed.
CLA/Vouch check passes, or this PR only updates
VOUCHED.td.Reviewers