Skip to content
Snippets Groups Projects
Unverified Commit be96130e authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

chore: fix coverage upload (#5593)

parent b3aab365
No related merge requests found
......@@ -124,6 +124,14 @@ jobs:
name: coverage
path: coverage
- name: Codecov
shell: bash
if: always() && env.coverage == 'true'
continue-on-error: true
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: E2E Test
run: yarn test-e2e
......@@ -192,25 +200,3 @@ jobs:
- name: Type check
run: yarn type-check
coverage:
needs: test
runs-on: ubuntu-latest
# codecov shouldn't need more than 3 min
timeout-minutes: 3
steps:
- uses: actions/checkout@v2
- name: Download coverage
uses: actions/download-artifact@v1
with:
name: coverage
- name: Codecov
shell: bash
continue-on-error: true
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment