We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e01c44a commit 6364948Copy full SHA for 6364948
.github/workflows/ci.yml
@@ -210,7 +210,11 @@ jobs:
210
- run: npm run coverage
211
env:
212
CI: true
213
- - run: bash <(curl -s https://codecov.io/bash)
+ - name: Upload code coverage
214
+ uses: codecov/codecov-action@v4
215
+ with:
216
+ fail_ci_if_error: true
217
+ token: ${{ secrets.CODECOV_TOKEN }}
218
check-postgres:
219
strategy:
220
matrix:
@@ -281,7 +285,11 @@ jobs:
281
285
282
286
283
287
284
288
289
290
291
292
293
concurrency:
294
group: ${{ github.workflow }}-${{ github.ref }}
295
cancel-in-progress: true
0 commit comments