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.
1 parent b02c3b5 commit e87f4d7Copy full SHA for e87f4d7
1 file changed
.github/workflows/lint.yml
@@ -23,18 +23,17 @@ jobs:
23
# Steps represent a sequence of tasks that will be executed as part of the job
24
steps:
25
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
27
28
# Runs a single command using the runners shell
29
- - name: Setup node
30
- uses: actions/setup-node@v2
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v1
31
with:
32
- node-version: 20
33
- cache: 'yarn'
+ bun-version: latest
34
35
# Runs a set of commands using the runners shell
36
- name: Run Install
37
- run: yarn install
+ run: bun install
38
39
- name: Run lint
40
- run: yarn run lint
+ run: bun run lint
0 commit comments