File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,11 @@ jobs:
210
210
- run : npm run coverage
211
211
env :
212
212
CI : true
213
- - run : bash <(curl -s https://codecov.io/bash)
213
+ - name : Upload code coverage
214
+ uses : codecov/codecov-action@v4
215
+ with :
216
+ fail_ci_if_error : true
217
+ token : ${{ secrets.CODECOV_TOKEN }}
214
218
check-postgres :
215
219
strategy :
216
220
matrix :
@@ -281,7 +285,11 @@ jobs:
281
285
- run : npm run coverage
282
286
env :
283
287
CI : true
284
- - run : bash <(curl -s https://codecov.io/bash)
288
+ - name : Upload code coverage
289
+ uses : codecov/codecov-action@v4
290
+ with :
291
+ fail_ci_if_error : true
292
+ token : ${{ secrets.CODECOV_TOKEN }}
285
293
concurrency :
286
294
group : ${{ github.workflow }}-${{ github.ref }}
287
295
cancel-in-progress : true
You can’t perform that action at this time.
0 commit comments