Skip to content

Commit cfad153

Browse files
committed
update ci
1 parent 524086f commit cfad153

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,22 @@ name: Test
22

33
on:
44
pull_request:
5-
branches: '**'
5+
branches: "**"
66

77
jobs:
88
build:
99
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: actions/checkout@v4
12-
- name: '[Setup] Node'
13-
uses: actions/setup-node@v4
14-
with:
15-
node-version: 16
16-
- name: '[Setup] Dependencies'
17-
run: yarn
18-
- name: '[Test] Linting'
19-
run: yarn lint
11+
- name: "Checkout"
12+
uses: actions/checkout@v5
2013

21-
- name: Unit tests results
22-
if: failure()
23-
uses: actions/upload-artifact@v4
14+
- name: "Setup Bun"
15+
uses: oven-sh/setup-bun@v2
2416
with:
25-
name: unit-tests-results
26-
path: .
17+
bun-version: latest
18+
19+
- name: "Install"
20+
run: bun i
21+
22+
- name: "Linting"
23+
run: bun run lint

0 commit comments

Comments
 (0)