Skip to content

Commit fdb596f

Browse files
committed
chore: update CI workflow to install lcov and build project before tests
1 parent 8e05d4d commit fdb596f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,18 @@ jobs:
2121
with:
2222
bun-version: latest
2323

24+
- name: Install system dependencies
25+
run: sudo apt-get update && sudo apt-get install -y lcov
26+
2427
- name: Install dependencies
2528
run: bun install
2629

2730
- name: Run linting and formatting checks
2831
run: bun run check
2932

33+
- name: Build project
34+
run: bun run build
35+
3036
- name: Run tests with coverage
3137
run: bun test --coverage --coverage-reporter=lcov
3238

0 commit comments

Comments
 (0)