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.
2 parents b0379d7 + f5f757d commit 82ad174Copy full SHA for 82ad174
.github/workflows/lint.yaml
@@ -18,23 +18,13 @@ jobs:
18
- name: Checkout
19
uses: actions/checkout@v6
20
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
30
- node-version: 20
31
- cache: "pnpm"
+ - uses: oven-sh/setup-bun@v2
32
33
- name: Install dependencies
34
- run: pnpm install --frozen-lockfile
+ run: bun install --frozen-lockfile
35
36
- name: Run Next.js lint check
37
- run: pnpm lint
+ run: bun lint
38
39
- name: Run dprint format check
40
- run: pnpm format:check
+ run: bun format:check
0 commit comments