Replace (p)npx with pnpm in publishing and workflow scripts#33261
Merged
Replace (p)npx with pnpm in publishing and workflow scripts#33261
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates CI/publishing workflows to use pnpm instead of (p)npx, aligning execution with the repo’s pnpm/Nx monorepo setup and avoiding ad-hoc runner tool downloads.
Changes:
- Add root
package.jsonscripts forchange-package-scopeandmake-artifacts-package(ts-node). - Replace
pnpx/npxinvocations in GitHub Actions workflows withpnpm exec/pnpm run. - Ensure package-scoped CLI execution where needed (e.g.,
puppeteervia--filter devextreme-angular).
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Adds reusable scripts so workflows can run ts-node tools via pnpm run. |
| .github/workflows/wrapper_tests.yml | Uses pnpm --filter devextreme-angular exec for puppeteer browser install. |
| .github/workflows/themebuilder_tests.yml | Replaces pnpx with pnpm exec for gulp and stylelint in scss/themebuilder jobs. |
| .github/workflows/renovation.yml | Uses pnpm exec for gulp localization. |
| .github/workflows/packages_publishing.yml | Switches artifact packaging + scope-changing steps to pnpm run scripts. |
| .github/workflows/demos_visual_tests.yml | Uses pnpm exec gulp for demos bundle config updates. |
| .github/workflows/build_all.yml | Runs bundler CLIs via pnpm exec instead of npx. |
IlyaKhD
approved these changes
Apr 14, 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.
Cherry-pick of #33212