File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -121,15 +121,18 @@ jobs:
121121 - name : Lerna test
122122 run : yarn lerna run --concurrency 1 --stream --no-prefix unit
123123 - name : Fix lcov paths
124+ if : (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
124125 run : |
125126 ./.github/actions/codecov-fix.sh
126127 - name : Combine all fixed LCOV files
128+ if : (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
127129 run : |
128130 echo "" > ./combined-unit.lcov
129131 for f in ./packages/*/coverage/lcov.fixed.info; do
130132 cat "$f" >> ./combined-unit.lcov
131133 done
132134 - name : Upload coverage artifact
135+ if : (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
133136 uses : actions/upload-artifact@v4
134137 with :
135138 name : coverage-unit
You can’t perform that action at this time.
0 commit comments