Skip to content

Commit 2a48669

Browse files
author
Tulga Tsogtgerel
committed
Update action.yml and test files
1 parent c5cc3ec commit 2a48669

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ outputs:
2424
runs:
2525
using: 'composite'
2626
steps:
27-
- name: Setup Node
28-
uses: actions/setup-node@v4
27+
- name: Setup Bun
28+
uses: oven-sh/setup-bun@v2
2929
with:
30-
node-version: 22
30+
bun-version: latest
3131

3232
- name: Install Action Dependencies
33-
run: npm install --production
33+
run: bun install --production
3434
shell: bash
3535
working-directory: ${{ github.action_path }}
3636

3737
- name: React to comment
3838
id: react
39-
run: npx tsx ${{ github.action_path }}/src/index.ts
39+
run: bun run ${{ github.action_path }}/src/index.ts
4040
shell: bash
4141
env:
4242
INPUT_GITHUB_TOKEN: ${{ inputs.github_token }}

0 commit comments

Comments
 (0)