Skip to content

Commit 6087d81

Browse files
Aleksandr Slapoguzovclaude
andcommitted
Fix CI workflow to use bun commands instead of npm
Replace npm commands with bun commands in the release workflow since only Bun is installed via oven-sh/setup-bun action. This fixes the "npm: command not found" error on the custom runner. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 4d07bc9 commit 6087d81

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: oven-sh/setup-bun@v2
1616
- run: bun install
17-
- run: npm run typecheck
18-
- run: npm test
19-
- run: npm run bundle:all
20-
- run: npm run package:all
17+
- run: bun run typecheck
18+
- run: bun test
19+
- run: bun run bundle:all
20+
- run: bun run package:all
2121
- name: Create Release
2222
uses: softprops/action-gh-release@v2
2323
with:

0 commit comments

Comments
 (0)