Skip to content

Commit 12764b6

Browse files
committed
fix: Fix issue with production GH actions not running test coverage
1 parent 4527b44 commit 12764b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/develop-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: bun install --frozen-lockfile
2828
- name: Run tests with coverage
29-
run: bun test:coverage
29+
run: bun run test:coverage
3030
- name: Upload coverage to Codecov
3131
uses: codecov/codecov-action@v5
3232
with:

.github/workflows/main-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
uses: oven-sh/setup-bun@v2
2222
with:
2323
bun-version-file: ".bun-version"
24-
- name: Install production dependencies
25-
run: bun install --production --frozen-lockfile
24+
- name: Install dependencies
25+
run: bun install --frozen-lockfile
2626
- name: Run tests with coverage
27-
run: bun test:coverage
27+
run: bun run test:coverage
2828
- name: Upload coverage to Codecov
2929
uses: codecov/codecov-action@v5
3030
with:

0 commit comments

Comments
 (0)