chore: add npm registry configuration to Bun settings
All checks were successful
Lint / lint (pull_request) Successful in 14s

This commit is contained in:
2026-03-26 16:48:15 +01:00
parent 04962e32f5
commit 2402b40059

View File

@@ -65,6 +65,10 @@ jobs:
- name: Configure npm registry auth
run: |
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
cat >> ~/.bunfig.toml << EOF
[install.scopes]
"@0kmpo" = { registry = "https://registry.npmjs.org", token = "${NODE_AUTH_TOKEN}" }
EOF
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}