ci: add GitHub Actions workflow (typecheck, test, build)#1
Merged
Conversation
Single job on push/PR to main running the existing npm scripts on Node 24. Tests run inside workerd via vitest-pool-workers, so no Cloudflare secrets are needed. checkout@v6 / setup-node@v6 (current majors). npm cache enabled explicitly since there is no packageManager field. Least-privilege perms and cancel-in-progress concurrency. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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 CI on GitHub Actions — the repo had none.
What
A single
buildjob onpush/pull_requesttomainthat runs the existing npm scripts:npm cinpm run typechecknpm test(139 tests, inside workerd via@cloudflare/vitest-pool-workers)npm run buildNotes
vitest-pool-workersprovisions miniflare/workerd locally.actions/checkout@v6+actions/setup-node@v6(current majors), Node 24 (matches local; runner default from 16 Jun 2026).cache: npmset explicitly —setup-node@v6only auto-caches whenpackage.jsonhas apackageManagerfield, which this repo doesn't.permissions: contents: read(least privilege) andcancel-in-progressconcurrency to drop superseded PR runs.Verified all three steps green locally before pushing.
🤖 Generated with Claude Code