feat(integration): support Node.js extensions in local make test runs#426
Closed
amylin1249 wants to merge 1 commit into
Closed
feat(integration): support Node.js extensions in local make test runs#426amylin1249 wants to merge 1 commit into
amylin1249 wants to merge 1 commit into
Conversation
Contributor
Extension release summary😴 Changed but won't releaseThe following extensions have code changes but the manifest version hasn't been incremented:
If you intended to release these changes, update the See the contributing guide for details. |
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.
Local
makeintegration testing now supports Node.js extensions, so a Node/Expressextension can be developed and verified locally, not just in CI. This is
harness/tooling groundwork; it applies to whatever Node/Express example or
extension we ultimately build on top of it. Mirrors the same change already made in
connect-staging-extensions.
What changed
nodejs-integration-test.sh(new): forappmode: nodejsextensions, startsConnect via with-connect, installs a Node runtime into the container (the
published Connect images ship none), enables it, restarts, then runs the test.
The Node build is architecture-matched (arm64/x64), so it works on Apple Silicon
and on CI runners.
Makefile: routesnodejsextensions to that script and leaves every otherextension on the existing with-connect path; adds
NODE_VERSIONand2026.06.0to the version list.
package-extension: forcesustarformat. macOS bsdtar defaults to pax, whoseheaders Connect's bundle reader cannot parse for a nested manifest ("Cannot open
manifest"); ustar is read by both bsdtar and GNU tar.
Not in scope
separate follow-up work and will build on this harness.
engines.node) lands via Support Node.js content in the Gallery release pipeline #373/feat: support Node.js content in the gallery release pipeline #423;this is the local
makecounterpart.Verified
Ran locally end-to-end against Connect 2026.06.0: a Node extension deploys and
returns HTTP 200, and a non-Node extension still deploys through the unchanged path.