Skip to content

Commit fb49dc5

Browse files
committed
ci: update coverage path for contracts package
Update CI to look for coverage files in packages/contracts/coverage/ instead of packages/contracts/test/reports/coverage/ to match the updated .solcover.js configuration.
1 parent 8779bfd commit fb49dc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
id: coverage_files
3636
run: |
3737
# Find all coverage-final.json files
38-
COVERAGE_FILES=$(find ./packages -name "coverage-final.json" -path "*/reports/coverage/*" | tr '\n' ',' | sed 's/,$//')
38+
COVERAGE_FILES=$(find ./packages -name "coverage-final.json" -path "*/coverage/*" | tr '\n' ',' | sed 's/,$//')
3939
echo "files=$COVERAGE_FILES" >> $GITHUB_OUTPUT
4040
echo "Found coverage files: $COVERAGE_FILES"
4141

0 commit comments

Comments
 (0)