chore(ts): migrate npm publish to npmjs.com#16
Merged
Conversation
GitHub Packages requires authentication even for public packages, making npm install fail for anyone without a PAT configured. npmjs.com is public by default - no auth needed for install. Reset version to 0.1.0 (fresh registry, no conflict).
There was a problem hiding this comment.
Pull request overview
Migrates the TypeScript client’s publishing pipeline from GitHub Packages to npmjs.com to avoid auth requirements for public installs.
Changes:
- Update
publishConfigto target the npmjs registry and publish the scoped package as public. - Update the GitHub Actions workflow to publish using
NPM_TOKENand remove GitHub Packages-specific setup. - Reset the TypeScript package version to
0.1.0for the new registry baseline.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
clients/typescript/package.json |
Switch publish registry to npmjs and set access: public; version reset. |
clients/typescript/package-lock.json |
Lockfile version metadata updated to match the new package version. |
.github/workflows/typescript-ci.yml |
Remove GitHub Packages config and publish to npmjs using NPM_TOKEN. |
Files not reviewed (1)
- clients/typescript/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
No longer needed - package is published to npmjs.com (public, no auth).
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 3 out of 4 changed files in this pull request and generated no new comments.
Files not reviewed (1)
- clients/typescript/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mfaferek93
approved these changes
Mar 31, 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.
Pull Request
Summary
Migrate TypeScript client publishing from GitHub Packages to npmjs.com.
npm installwithout a PAT gets 401NPM_TOKENsecretBefore merging: add
NPM_TOKENsecret to repo settings (npmjs.com Automation token).Issue
Type
Testing
No code changes - only publishing config and CI workflow.
Checklist