-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(actions): publish @node-core/ui-components
#7566
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds a new GitHub Actions workflow to publish the @node-core/ui-components package after successful tests and additional security validations. Key changes include:
- Triggering the workflow via a completed Linting and Tests workflow or by workflow_dispatch.
- Introducing commit authenticity checks to enforce verified commit and authorized committer requirements.
- Setting up Node.js, generating versions using the commit SHA, and publishing the package if changes occur in the packages/ui-components directory.
Lighthouse Results
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't get if you are trying to publish it npm registry or GitHub packages
We are publishing to GitHub Packages. |
We don't control the |
Per discussion in other thread |
It's hard to properly test this, as it makes use of GitHub tokens, but based on my testing of each step independently, this'll publish the
@node-core/ui-components
package.This PR publishes `@node-core/ui-components to the GitHub registry. Before merging, we need to verify that we have access to this scope.
For security reasons, several checks are in place to prevent malicious execution:
main
'sLinting and Tests
workflow, and that check must've been triggered by apush
event tomain
, or the workflow was manually dispatchedworkflow_dispatch
event, the commit must come from the merge queue.main
will not be published automaticallyAdditionally, the commit must've modified something in
packages/ui-components
.Ref: #7401
Closes nodejs/api-docs-tooling#236