Skip to content

Commit dd2a12b

Browse files
committed
fix
1 parent 4c0bd9b commit dd2a12b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)