File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 6363 node-version : [22.x]
6464 # Don't forget to update build-native-release
6565 python-version : [3.11]
66- transpile-worker-threads : [false, true]
6766 fail-fast : false
6867
69- env :
70- CUBEJS_TRANSPILATION_WORKER_THREADS : ${{ matrix.transpile-worker-threads }}
7168 steps :
7269 - id : get-tag-out
7370 run : echo "$OUT"
@@ -121,16 +118,16 @@ jobs:
121118 - name : Lerna test
122119 run : yarn lerna run --concurrency 1 --stream --no-prefix unit
123120 - name : Fix lcov paths
124- if : (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true )
121+ if : (matrix.node-version == '22.x')
125122 run : |
126123 ./.github/actions/codecov-fix.sh
127124 - name : Combine all fixed LCOV files
128- if : (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true )
125+ if : (matrix.node-version == '22.x')
129126 run : |
130127 echo "" > ./combined-unit.lcov
131128 find ./packages -type f -name lcov.fixed.info -exec cat {} + >> ./combined-unit.lcov || true
132129 - name : Upload coverage artifact
133- if : (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true )
130+ if : (matrix.node-version == '22.x')
134131 uses : actions/upload-artifact@v4
135132 with :
136133 name : coverage-unit
You can’t perform that action at this time.
0 commit comments