Commit 6a4af37
Fix CinderX docs CI: point yarn.lock at the public package registry
Summary:
The `Documentation` GitHub Actions workflow was failing at the `Install dependencies` step (`yarn install --frozen-lockfile`) within ~14s, before the Docusaurus build ever ran. Every one of the 1278 `resolved` URLs in `cinderx/website/yarn.lock` pointed at the wrong registry, so yarn could not fetch any tarballs.
This rewrites all `resolved` URLs to `registry.yarnpkg.com`. The tarball paths and `#<sha1>` / `integrity` hashes are byte-identical between the two — only the host differs — so the lockfile still pins the exact same package versions (mirrors the pattern already used by `pyrefly/website/yarn.lock`).
It also relaxes the install step from `yarn install --frozen-lockfile` to plain `yarn install` so a future internal lockfile regeneration that reintroduces an internal-registry URL re-resolves against the public registry instead of hard-failing the job.
Reviewed By: mpage
Differential Revision: D110208647
fbshipit-source-id: a61ccb83475d833efae1d66a23ce4e54fe7f5eed1 parent bbc7680 commit 6a4af37
2 files changed
Lines changed: 1279 additions & 1279 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
| 47 | + | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| |||
0 commit comments