Fix the remaining audit alerts#33370
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates CI and tooling to reduce audit-related variability by using deterministic dependency installs (npm ci) and preventing npx from auto-installing packages (npx --no-install).
Changes:
- Switched several GitHub Actions steps from
npm installtonpm ci. - Updated workflows/actions to use
npx --no-installfor existing tooling. - Removed an
npm i --legacy-peer-depscall from the version bump script.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| tools/scripts/overwrite-wrappers-packages.ts | Updates user-facing script instructions (console output). |
| tools/scripts/common/version.ts | Adjusts version bump behavior by removing a post-bump install step. |
| .github/workflows/themebuilder_tests.yml | Uses npx --no-install for gulp/nx/stylelint in CI. |
| .github/workflows/packages_publishing.yml | Uses npx --no-install and switches install step to npm ci. |
| .github/workflows/demos_visual_tests_frameworks.yml | Switches a tarball install step to npm ci. |
| .github/actions/setup-chrome-headless-shell/action.yml | Changes how chrome-headless-shell is installed via npx. |
| .github/actions/run-qunit-tests/action.yml | Reorders setup-node/cache/npm-ci steps for QUnit runs. |
babc1b2 to
16c1a65
Compare
af2dfe7 to
55d0ef5
Compare
IlyaKhD
approved these changes
Apr 22, 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.
Use deterministic npm ci and npx --no-install