ci: run E2E test suite in GitHub Actions#380
Merged
Merged
Conversation
The 18-section E2E suite (test-e2e.sh) previously ran only via the manual `pnpm run test:all` script, so PRs and pushes to main never caught E2E regressions. Add an `e2e` job to the Test workflow that builds and runs `pnpm run test:e2e` alongside the existing coverage job. Verified locally: 162/162 tests passed. Closes #641
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
e2ejob to theTestGitHub Actions workflow so the 18-section E2E suite runs on every PR and push tomain, instead of only manually viapnpm run test:allpnpm run test:e2e(equivalent to the existingcoveragejob's setup, minus coverage collection)CHANGELOG.mdunder[Unreleased]Why
test-e2e.shsources 18 test sections undertests/e2e/, but none of.github/workflows/{test,release,quality}.ymlever invoked it — E2E regressions could only be caught by manually runningpnpm run test:all.Test plan
pnpm run buildsucceedspnpm run test:e2epasses locally: 162/162 tests passed.github/.huskyE2E dependency on tmux or an externalclaudeCLI that would fail inubuntu-latest🤖 Generated with Claude Code