Modernize compatibility testing and releases - #406
Merged
Conversation
phoenixy1
force-pushed
the
chore/modernize-compatibility-ci-stacked
branch
from
July 23, 2026 23:04
b521e2d to
8f224e0
Compare
The resume short-circuit keyed off the local tag, so a run that published to npm and created the annotated tag but failed on git push would, on rerun, see the stale local tag, report "already published and tagged", and exit without ever pushing the tag. Gate the short-circuit on the tag existing on the remote instead, so the missing push is retried. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
dtroupe-plaid
approved these changes
Jul 23, 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.
Compatibility is only validated against React 17, and the
xyzrelease path can leave partially pushed release state.This makes React 19 the development baseline, tests React 18 and 19 on Node 24 with TypeScript 5, preserves package import checks, and replaces
xyzwith a guarded, resumable publish-then-tag workflow.