Skip to content

Commit cf5155a

Browse files
committed
another fix
1 parent 16b2ef1 commit cf5155a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,7 @@ jobs:
128128
if: (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
129129
run: |
130130
echo "" > ./combined-unit.lcov
131-
for f in ./packages/*/coverage/lcov.fixed.info; do
132-
cat "$f" >> ./combined-unit.lcov
133-
done
131+
find ./packages -type f -name lcov.fixed.info -exec cat {} + >> ./combined-unit.lcov || true
134132
- name: Upload coverage artifact
135133
if: (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
136134
uses: actions/upload-artifact@v4
@@ -510,9 +508,7 @@ jobs:
510508
- name: Combine all fixed LCOV files
511509
run: |
512510
echo "" > ./combined-integration-${{ matrix.db }}.lcov
513-
for f in ./packages/*/coverage/lcov.fixed.info; do
514-
cat "$f" >> ./combined-integration-${{ matrix.db }}.lcov
515-
done
511+
find ./packages -type f -name lcov.fixed.info -exec cat {} + >> ./combined-integration-${{ matrix.db }}.lcov || true
516512
- name: Upload coverage artifact
517513
uses: actions/upload-artifact@v4
518514
with:

0 commit comments

Comments
 (0)