From da33f0ea15946b67b91fdfaa83272975f73d2f56 Mon Sep 17 00:00:00 2001 From: Jesse Yang Date: Tue, 4 Aug 2020 10:56:24 -0700 Subject: [PATCH] build: upgrade codecov-action and disable failing_ci_if_error (#723) --- .../superset-ui/.github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml index 753044f8d5965..a8a2c92964902 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml @@ -11,8 +11,9 @@ on: jobs: build: name: Build and test - - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 + env: + CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" strategy: matrix: @@ -58,6 +59,5 @@ jobs: run: yarn test - name: Report code coverage - uses: codecov/codecov-action@v1 - with: - fail_ci_if_error: true + run: curl -s https://codecov.io/bash | bash +