Skip to content

Commit 3e03a29

Browse files
committed
chore: wip
1 parent a11a7cf commit 3e03a29

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,22 @@ jobs:
2929
- name: Checkout
3030
uses: actions/checkout@v4
3131

32-
- name: Setup Biome
33-
uses: biomejs/setup-biome@v2
32+
- name: Setup Bun
33+
uses: oven-sh/setup-bun@v2
34+
35+
- name: Use cached node_modules
36+
uses: actions/cache@v4
3437
with:
35-
version: latest
38+
path: node_modules
39+
key: node-modules-${{ hashFiles('**/bun.lockb') }}
40+
restore-keys: |
41+
node-modules-
42+
43+
- name: Install dependencies
44+
run: bun install
3645

3746
- name: Lint
38-
run: biome ci .
47+
run: bunx --bun eslint .
3948

4049
typecheck:
4150
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)