update: workflow npm commands updated#8466
Open
Bayheck wants to merge 4 commits intoDevExpress:masterfrom
Open
update: workflow npm commands updated#8466Bayheck wants to merge 4 commits intoDevExpress:masterfrom
Bayheck wants to merge 4 commits intoDevExpress:masterfrom
Conversation
aleks-pro
approved these changes
Dec 4, 2025
Contributor
There was a problem hiding this comment.
Pull request overview
This PR modernizes the GitHub Actions workflows by standardizing on npm ci for dependency installation and configuring OIDC-based publishing to npm, eliminating the need for long-lived authentication tokens.
- Replaces
npm installwithnpm ciacross workflow files for more deterministic builds - Configures OIDC permissions for trusted publishing to npm
- Updates GitHub Actions (checkout@v4, setup-node@v4) and Node.js version (18 → 24)
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/test-server.yml | Standardizes Docker dependency installation to use npm ci |
| .github/workflows/test-functional.yml | Standardizes Docker dependency installation to use npm ci |
| .github/workflows/test-dependencies.yml | Updates dependency check to use npm ci with package-lock-only flag |
| .github/workflows/publish.yml | Adds OIDC permissions, updates actions/Node versions, removes NPM_TOKEN in favor of OIDC, and standardizes to npm ci |
| .github/workflows/license-check.yml | Updates dependency installation commands to use npm ci |
| .github/workflows/deploy-to-artifacts.yml | Standardizes dependency installation to use npm ci |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Purpose
Describe the problem you want to address or the feature you want to implement.
Approach
Describe how your changes address the issue or implement the desired functionality in as much detail as possible.
References
Provide a link to the existing issue(s), if any.
Pre-Merge TODO