[Automation] - Declare the Cypress reporting and tag filtering packages - #18730
Open
izaac wants to merge 1 commit into
Open
[Automation] - Declare the Cypress reporting and tag filtering packages#18730izaac wants to merge 1 commit into
izaac wants to merge 1 commit into
Conversation
JUnit reporting and tag filtering need cypress-multi-reporters, mocha-junit-reporter, junit-report-merger, find-test-names and globby. This branch does not declare them, so they have to be added at run time, outside the lockfile. Declared here at the versions release-2.15 already uses, so a run installs what --frozen-lockfile pins and nothing else.
yonasberhe23
approved these changes
Aug 7, 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.
Summary
CI only change, no product code affected.
Occurred changes and/or fixed issues
The Jenkins E2E job needs five packages this branch does not declare:
cypress-multi-reportersandmocha-junit-reporterwrite the JUnit XML,junit-report-mergermerges it intoresults.xml, andfind-test-namesandglobbypre-select specs by tag.release-2.15andmasterdeclare all five, so this is the only branch that needs anything added at run time.Declaring them here makes a run install exactly what
--frozen-lockfilepins, and nothing else, the same wayrelease-2.15already does.Technical notes summary
cypress/package.json, at the versionsrelease-2.15andmasteralready use, plus the regenerated lockfile.11.1.0and@cypress/grepat3.1.5.cypress/jenkins/changes. The job keeps working either way; this only moves where the packages come from.Testing done
yarn install --frozen-lockfilein the container the E2E job uses, node 24.14.0 and yarn 1.22.22:Checklist
Admin,Standard UserandUser Base