Skip to content

Commit 426699f

Browse files
committed
chore: optimize apt install in CI to skip man-db triggers
1 parent fdb596f commit 426699f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ jobs:
2222
bun-version: latest
2323

2424
- name: Install system dependencies
25-
run: sudo apt-get update && sudo apt-get install -y lcov
25+
run: |
26+
sudo apt-get update
27+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends lcov
28+
sudo rm -rf /var/lib/apt/lists/*
2629
2730
- name: Install dependencies
2831
run: bun install

0 commit comments

Comments
 (0)