From 29c866b09a3333e149e6845a9a45d0834847eeb9 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Sun, 2 Jul 2023 13:22:00 +0530 Subject: [PATCH] Don't fail CI on codecov error --- .github/codecov.yaml | 2 +- .github/workflows/e2e.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/codecov.yaml b/.github/codecov.yaml index d33925afc..3db0811ad 100644 --- a/.github/codecov.yaml +++ b/.github/codecov.yaml @@ -12,4 +12,4 @@ coverage: status: project: default: - threshold: 1% + threshold: 2% diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 9bcb1898c..c204d5872 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -52,7 +52,7 @@ jobs: files: coverage/cypress/lcov.info flags: e2e name: mermaid-codecov - fail_ci_if_error: true + fail_ci_if_error: false verbose: true - name: Upload Artifacts uses: actions/upload-artifact@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e25502ee4..47b726bd1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,5 +47,5 @@ jobs: files: ./coverage/vitest/lcov.info flags: unit name: mermaid-codecov - fail_ci_if_error: true + fail_ci_if_error: false verbose: true