Skip to content

Commit e87f4d7

Browse files
Use bun for ci and lint
1 parent b02c3b5 commit e87f4d7

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/lint.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,17 @@ jobs:
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727

2828
# Runs a single command using the runners shell
29-
- name: Setup node
30-
uses: actions/setup-node@v2
29+
- name: Setup Bun
30+
uses: oven-sh/setup-bun@v1
3131
with:
32-
node-version: 20
33-
cache: 'yarn'
32+
bun-version: latest
3433

3534
# Runs a set of commands using the runners shell
3635
- name: Run Install
37-
run: yarn install
36+
run: bun install
3837

3938
- name: Run lint
40-
run: yarn run lint
39+
run: bun run lint

0 commit comments

Comments
 (0)