Skip to content

Commit

Permalink
ci: switch from Bun to Node v22
Browse files Browse the repository at this point in the history
  • Loading branch information
abdurezakfarah committed Dec 1, 2024
1 parent 5d760e3 commit eeb01ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
with:
fetch-depth: 0

- name: Use Bun
uses: oven-sh/setup-bun@v2
- name: Use Node
uses: actions/setup-node@v4
with:
bun-version: 1.1.26
node-version: 22

- name: Install required dependencies
run: bun install
run: npm install

- name: Run Format Check
run: bun run format
run: npm run format

- name: Run lint
run: bun run lint
run: npm run lint



Expand Down

0 comments on commit eeb01ac

Please sign in to comment.