File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments