Pin CI to Node 24.14.1 - #1835
Merged
Merged
Conversation
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe GitHub Actions setup composite action pins Node.js from ChangesNode.js version pinning
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
brentkulwicki
approved these changes
May 18, 2026
rdonigian
added a commit
that referenced
this pull request
May 22, 2026
## Summary - CI started failing on `yarn gql-gen -e` with `EBADF: bad file descriptor, fstat` after `actions/setup-node` rolled the `24` tag to **v24.15.0**. - Root cause is in Yarn PnP, not our code: nodejs/node#61769 (ESM loader cycle reduction) was backported to Node 24.15.0, but Yarn's `HAS_BROKEN_FSTAT_FOR_ZIP_FDS` gate in `yarnpkg-pnp/sources/esm-loader/loaderFlags.ts` only covers `>=25.7`. Any CJS-from-zip read (e.g. `-r ts-node/register` under PnP) now crashes. Tracking issue: yarnpkg/berry#7103. - Pinning [.github/actions/setup/action.yml](.github/actions/setup/action.yml) to `24.14.1` (last good patch) until Yarn widens the gate.
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.
Summary
yarn gql-gen -ewithEBADF: bad file descriptor, fstatafteractions/setup-noderolled the24tag to v24.15.0.HAS_BROKEN_FSTAT_FOR_ZIP_FDSgate inyarnpkg-pnp/sources/esm-loader/loaderFlags.tsonly covers>=25.7. Any CJS-from-zip read (e.g.-r ts-node/registerunder PnP) now crashes. Tracking issue: [BUG] HAS_BROKEN_FSTAT_FOR_ZIP_FDS version gate should include Node 24.15+ yarnpkg/berry#7103.24.14.1(last good patch) until Yarn widens the gate.