Skip to content

Commit 6b78b71

Browse files
authored
ci: run tests in ci workflow (#1858)
1 parent 6fb93b0 commit 6b78b71

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,24 @@ name: Test
22

33
on:
44
pull_request:
5-
branches: "**"
65

76
jobs:
87
build:
98
runs-on: ubuntu-24.04
109
steps:
11-
- name: "Checkout"
10+
- name: 'Checkout'
1211
uses: actions/checkout@v5
1312

14-
- name: "Setup Bun"
13+
- name: 'Setup Bun'
1514
uses: oven-sh/setup-bun@v2
1615
with:
1716
bun-version: latest
1817

19-
- name: "Install"
18+
- name: 'Install'
2019
run: bun i
2120

22-
- name: "Linting"
21+
- name: 'Linting'
2322
run: bun run lint
23+
24+
- name: 'Testing Coverage'
25+
run: bun run test:coverage

0 commit comments

Comments
 (0)