Skip to content

Commit d5b05e2

Browse files
committed
Fix working directory for test results/coverage
1 parent 777674d commit d5b05e2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
if: success() || failure()
6464
with:
6565
name: "Test Results (${{ matrix.os }})"
66-
path: .test-report.xml
66+
path: fedify/.test-report.xml
6767
reporter: jest-junit
6868
continue-on-error: true
6969
- if: '!cancelled()'
@@ -72,11 +72,12 @@ jobs:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: .test-report.xml
7474
- run: deno coverage --lcov .cov > .cov.lcov
75+
working-directory: ${{ github.workspace }}/fedify/
7576
continue-on-error: true
7677
- uses: codecov/codecov-action@v5
7778
with:
7879
token: ${{ secrets.CODECOV_TOKEN }}
79-
files: .cov.lcov
80+
files: fedify/.cov.lcov
8081
continue-on-error: true
8182

8283
test-node:

0 commit comments

Comments
 (0)