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 c5cc3ec commit 2a48669Copy full SHA for 2a48669
action.yml
@@ -24,19 +24,19 @@ outputs:
24
runs:
25
using: 'composite'
26
steps:
27
- - name: Setup Node
28
- uses: actions/setup-node@v4
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
29
with:
30
- node-version: 22
+ bun-version: latest
31
32
- name: Install Action Dependencies
33
- run: npm install --production
+ run: bun install --production
34
shell: bash
35
working-directory: ${{ github.action_path }}
36
37
- name: React to comment
38
id: react
39
- run: npx tsx ${{ github.action_path }}/src/index.ts
+ run: bun run ${{ github.action_path }}/src/index.ts
40
41
env:
42
INPUT_GITHUB_TOKEN: ${{ inputs.github_token }}
src/utils/utils.test.ts src/utils/index.test.tssrc/utils/utils.test.ts renamed to src/utils/index.test.ts
0 commit comments