Skip to content

Commit

Permalink
fix: fix codecheck action
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinoTriadi committed Dec 19, 2024
1 parent b9715b5 commit 94067f9
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/codecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v4
- name: Setup Bun
uses: bun-action/setup@v1
with:
node-version: 18
bun-version: "latest" # Specify the version (e.g., "0.7.0") or use "latest"

- name: Setup bun
uses: bun-action/setup@v3
with:
version: 0.9.0
run_install: true
- name: Install dependencies
run: bun install

- name: Run code check
run: bun check

0 comments on commit 94067f9

Please sign in to comment.