We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38c8d3e commit 742bbefCopy full SHA for 742bbef
2 files changed
.github/actions/cache-setup/action.yml
@@ -20,6 +20,7 @@ runs:
20
uses: actions/setup-node@v4
21
with:
22
node-version: 20
23
+ registry-url: 'https://registry.npmjs.org'
24
cache: 'pnpm'
25
- name: Install dependencies
26
run: pnpm install --frozen-lockfile
.github/workflows/publish.yml
@@ -57,6 +57,14 @@ jobs:
57
- name: Cache PNPM install and Turbo
58
uses: ./.github/actions/cache-setup
59
60
+ - name: Configure npm registry for OIDC auth
61
+ uses: actions/setup-node@v4
62
+ with:
63
64
+
65
+ - name: Verify npm auth
66
+ run: npm whoami --registry=https://registry.npmjs.org/
67
68
- name: Build
69
if: inputs.skip_checks == false
70
run: pnpm build
0 commit comments