From b83ee6b81ac29a822c57abff09d21fee2b371990 Mon Sep 17 00:00:00 2001 From: Katerina Skroumpelou Date: Thu, 25 Sep 2025 15:10:00 +0300 Subject: [PATCH] chore: do not fail on coveralls error --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da40a7239..74711c05b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,10 +90,12 @@ jobs: - name: Upload coverage results to Coveralls uses: coverallsapp/github-action@v2 with: + fail-on-error: false github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ./test/coverage/lcov.info parallel: true flag-name: node-${{ matrix.node }}-${{ matrix.os }} + continue-on-error: true coveralls-finish: name: Coveralls Finished @@ -103,8 +105,10 @@ jobs: - name: Coveralls Finished uses: coverallsapp/github-action@v2 with: + fail-on-error: false github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true + continue-on-error: true deno-tests: name: Deno Tests / ${{ matrix.deno }}