test: migrate workflows to self-hosted runners#327
Open
NolanNtrg wants to merge 3 commits into
Open
Conversation
- Replace GitHub-hosted runners with self-hosted across all workflows - Use official Playwright container (v1.59.1-noble) for e2e and unit tests - Configure persistent pnpm store at ~/.pnpm-store with --prefer-offline - Remove composite setup-playwright action (no longer needed) - Remove minio/S3 service from e2e workflow - Add git clean -ffdx cleanup step to all jobs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Upload feature removed along with the S3 dependency, env vars, route handler, and UI components. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Point webServer.url to /api/openapi/app so Playwright waits for the Nitro environment to be fully initialized before running tests, preventing 503 errors from the race condition between HTTP server startup and Nitro initialization. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
NolanNtrg
marked this pull request as ready for review
April 29, 2026 13:00
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
Migrate all CI workflows (
code-quality,e2e-tests,release,pr-title) to self-hosted runnersUse the official Playwright container (
mcr.microsoft.com/playwright:v1.59.1-noble) for e2e and unit tests jobs, with--user 1001:1001Configure a persistent pnpm store (
~/.pnpm-store) with--prefer-offlinefor faster installs across runsRemove the composite
setup-playwrightaction and the minio/S3 service from the e2e workflowAdd
git clean -ffdxcleanup at the end of every job (if: always())Remove S3/minio upload integration (route, env vars, UI components)
Fix Playwright
webServer.urlto point at/api/openapi/appso Nitro is fully initialized before tests startPerformance comparison :
Test plan
code-qualityworkflow passes on a PR (linter, TS checker, unit tests)e2e-testsworkflow passes end-to-end🤖 Generated with Claude Code