Add CI workflow for PR builds#32
Merged
jack-williams merged 3 commits intomainfrom Apr 30, 2026
Merged
Conversation
Adds a GitHub Actions workflow that runs on pull requests and pushes to main. It installs dependencies with Yarn 4 (via Corepack), then runs prettier:check, typecheck, and build using the existing Nx scripts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced Apr 30, 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.
Adds a GitHub Actions workflow so every PR gets a build check.
What it does
On each pull request (and pushes to
main), the workflow:packageManagerfield (Yarn 4.9.1) is honoredyarn install --immutableyarn prettier:checkyarn typecheckyarn buildAlso supports manual runs via
workflow_dispatch.Why
There is currently no CI on the repo, so PRs (including the open Dependabot bumps) can't be verified automatically. With this in place, the Build & Verify check will appear on every PR and can optionally be made required via branch protection.
Verification
The workflow has already been run successfully on this branch (run completed in 54s — install, prettier:check, typecheck, and build all passed).
Notes
package.json— no new tooling added.concurrencycancels superseded PR runs to save minutes.