Improvement: DO-12330 speed up E2E CI - #671
Merged
Merged
Conversation
krzysztof-causalens
marked this pull request as ready for review
July 27, 2026 17:06
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.
Motivation and Context
The E2E job is currently the slowest CI job after the Oxlint/Oxfmt tooling upgrade. It also sits behind a shared setup job, so every real test job waits for setup even when its caches are already warm.
Measured GitHub Actions results from master run 30278046973 and this PR's run 30283988882:
masterThe E2E job is 1m 15s faster (22%), while the workflow critical path is 3m 02s faster (40%). GitHub-hosted runner timings naturally include some run-to-run noise.
Implementation Description
cy.session, while continuing to visit each test route independently.actions/setup-nodemanage the pnpm store cache and remove the redundant apt update/wget installation.cypress runvalidate the restored binary instead of launching Cypress once in a separate verification step.Controlled local measurements, included only to separate the Cypress and authentication effects:
Any new dependencies Introduced
No new dependency category. The existing Cypress development dependency is upgraded from 10.11.0 to 15.19.0.
How Has This Been Tested?
make lint-js.pnpm lerna run format:check.git diff --check.PR Checklist:
Screenshots (if appropriate):
Not applicable; this changes test and CI infrastructure only.