@@ -247,20 +247,30 @@ jobs:
247
247
- name : Download artifacts
248
248
uses : actions/download-artifact@v4
249
249
- name : Post Unit Test Coverage
250
- uses : codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c
250
+ uses : codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
251
251
with :
252
+ fail_ci_if_error : true
252
253
token : ${{ secrets.CODECOV_TOKEN }}
253
254
directory : unit-tests-${{ matrix.node-version }}
254
255
flags : unit-tests-${{ matrix.node-version }}
255
- - name : Post Integration Test Coverage
256
- uses : codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c
256
+ - name : Post Integration CJS Test Coverage
257
+ uses : codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
257
258
with :
259
+ fail_ci_if_error : true
258
260
token : ${{ secrets.CODECOV_TOKEN }}
259
- directory : integration-tests-${{ matrix.node-version }}
260
- flags : integration-tests-${{ matrix.node-version }}
261
+ directory : integration-tests-cjs-${{ matrix.node-version }}
262
+ flags : integration-tests-cjs-${{ matrix.node-version }}
263
+ - name : Post Integration ESM Test Coverage
264
+ uses : codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
265
+ with :
266
+ fail_ci_if_error : true
267
+ token : ${{ secrets.CODECOV_TOKEN }}
268
+ directory : integration-tests-esm-${{ matrix.node-version }}
269
+ flags : integration-tests-esm-${{ matrix.node-version }}
261
270
- name : Post Versioned Test Coverage
262
- uses : codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c
271
+ uses : codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
263
272
with :
273
+ fail_ci_if_error : true
264
274
token : ${{ secrets.CODECOV_TOKEN }}
265
275
directory : versioned-tests-${{ matrix.node-version }}
266
276
flags : versioned-tests-${{ matrix.node-version }}
0 commit comments