fix(ci): replace company registry URLs in lockfile, pin public registry; fix token-validation tests#267
Merged
Merged
Conversation
12 packages had resolved URLs pointing to npm.repo.ops.iszn.cz which is unreachable from GitHub Actions runners. Caused by running npm audit fix locally with company registry configured globally. - Replace all npm.repo.ops.iszn.cz URLs with registry.npmjs.org in lockfile - Add .npmrc with registry=https://registry.npmjs.org to prevent recurrence Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Commit 2fa6fd8 intentionally changed invalid-token rejection from HTTP 401 to JSON-RPC HTTP 200 to avoid triggering OAuth flow in clients when OAuth is degraded; tests were not updated at that time. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Agent authored:
Summary
package-lock.jsonhadresolvedURLs pointing tonpm.repo.ops.iszn.cz(company-internal registry, unreachable from GitHub Actions runners)npm audit fixrun locally with company registry configured globally rewrote lockfile resolved URLs.npmrcwithregistry=https://registry.npmjs.orgso future localnpm install/npm audit fixalways uses the public registrytoken-validation.test.ts: commit2fa6fd8intentionally changed invalid-token rejection from HTTP 401 to JSON-RPC HTTP 200 (to avoid triggering OAuth flow in degraded OAuth state), but tests were not updatedTest plan
npm cipasses (no more ENOTFOUND for npm.repo.ops.iszn.cz)token-validationtests pass (8/8)