We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cef2e0 commit 8064c95Copy full SHA for 8064c95
1 file changed
.github/workflows/publish.yaml
@@ -26,10 +26,11 @@ jobs:
26
with:
27
node-version: 22
28
registry-url: 'https://registry.npmjs.org'
29
+ # Keep npm native here. Enabling the npm Corepack shim inside this
30
+ # Bun-managed repo makes npm resolution go through Corepack, which
31
+ # rejects packageManager: bun@... during publish.
32
- name: Update npm
- run: |
- corepack enable npm
- corepack install -g npm@latest
33
+ run: npm install -g npm@latest
34
- name: Setup Bun
35
uses: ./.github/composite/setup-bun
36
- name: Install dependencies
0 commit comments