1 Commits

Author SHA1 Message Date
cd99b47ee1 Add setup-node step for npm registry auth
setup-node with registry-url configures the .npmrc with the OIDC
token needed for trusted publishing via bunx npm publish.

Co-authored-by: Ona <no-reply@ona.com>
2026-03-14 01:29:05 +00:00

View File

@@ -19,6 +19,11 @@ jobs:
- uses: oven-sh/setup-bun@v2 - uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: bun install - run: bun install
- run: bun run build - run: bun run build