Conversation
Closes #8. GitHub Actions workflow guarding the publishable library surface. Runs tsc --noEmit, eslint src, and jest on every push to develop and every PR targeting it. Scoped to the library only: installs root-only via `npm ci --workspaces=false`, skipping the example/* workspaces and their heavy native deps (Expo, react-native-macos, Skia) which need a Mac + provisioning to build. The examples' build health stays a manual on-device check; CI guards what actually ships to npm. Node 20 (matches package.json engines), npm cache keyed on the committed lockfile, concurrency-cancel on superseded pushes. Validated locally against a root-only install before commit — all three checks green (38 tests pass, 0 lint errors).
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.
Closes #8.
GitHub Actions workflow guarding the publishable library surface —
tsc --noEmit,eslint src,jeston every push todevelopand every PR targeting it.Scoped to the library only. Installs root-only via
npm ci --workspaces=false, skipping theexample/*workspaces and their heavy native deps (Expo, react-native-macos, Skia) that need a Mac + provisioning. The examples stay a manual on-device check; this guards what ships to npm.Node 20 (matches
engines), npm cache on the committed lockfile, concurrency-cancel on superseded pushes.Validated locally against an isolated root-only install before commit: typecheck exit 0, 0 lint errors (10 pre-existing inline-style warnings, non-failing), 38 tests pass. This PR's own check run is the live validation.
🤖 Generated with Claude Code