Skip to content

Commit f5f757d

Browse files
committed
ci: use Bun for linting
1 parent b9c6a03 commit f5f757d

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/lint.yaml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,13 @@ jobs:
1818
- name: Checkout
1919
uses: actions/checkout@v6
2020

21-
- uses: pnpm/action-setup@v4
22-
name: Install pnpm
23-
with:
24-
version: 10
25-
run_install: false
26-
27-
- name: Install Node.js
28-
uses: actions/setup-node@v6
29-
with:
30-
node-version: 20
31-
cache: "pnpm"
21+
- uses: oven-sh/setup-bun@v2
3222

3323
- name: Install dependencies
34-
run: pnpm install --frozen-lockfile
24+
run: bun install --frozen-lockfile
3525

3626
- name: Run Next.js lint check
37-
run: pnpm lint
27+
run: bun lint
3828

3929
- name: Run dprint format check
40-
run: pnpm format:check
30+
run: bun format:check

0 commit comments

Comments
 (0)