ci: pin release npm to ^11 to fix EBADENGINE blocking releases#1757
Open
nbouliol wants to merge 1 commit into
Open
ci: pin release npm to ^11 to fix EBADENGINE blocking releases#1757nbouliol wants to merge 1 commit into
nbouliol wants to merge 1 commit into
Conversation
npm@latest resolved to npm@12 which requires node ^24.15.0; runner is on node 24.10 (.nvmrc), so the release job failed with EBADENGINE before multi-semantic-release ran, blocking all publishes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Coverage Impact This PR will not change total coverage. 🚦 See full report on Qlty Cloud »🛟 Help
|
matthv
approved these changes
Jul 13, 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
The
Release packagesjob onmainfails beforemulti-semantic-releaseruns, so no packages have been published for the last several commits.Root cause: the step
Install npm >= 11.15.0runsnpm install -g npm@latest.npm@latestis nownpm@12.0.0, which requires node^22.22.2 || ^24.15.0 || >=26.0.0. The runner uses node24.10(.nvmrc), which does not satisfy^24.15.0, so the step fails withEBADENGINEand the release never runs:Fix
Pin the release npm install to
npm@^11, matching the step intent (>= 11.15.0) and staying compatible with the current node version.Note: the separate
LLM Integration Tests (ai-proxy)red is an unrelated flaky failure (Anthropic HTTP 529 overloaded) and does not block the release job.🤖 Generated with Claude Code
Note
Pin npm to
^11in release workflow to fixEBADENGINEerrorsThe build.yml release workflow was installing
npm@latest, which causedEBADENGINEerrors when a newer npm version dropped support for the Node version in use. Pinning tonpm@^11keeps the install on the 11.x line.Macroscope summarized e4c2bad.