2022-03-10 16:17:01 +03:00
|
|
|
name: Test coverage
|
|
|
|
on:
|
|
|
|
pull_request: {}
|
|
|
|
push:
|
|
|
|
branches: [develop, main, master]
|
|
|
|
jobs:
|
|
|
|
test-coverage:
|
|
|
|
runs-on: ubuntu-latest
|
2022-03-11 13:26:42 +03:00
|
|
|
env:
|
2022-03-11 16:00:56 +03:00
|
|
|
# This must be set for fetchdep.sh to get the right branch
|
2022-03-11 13:26:42 +03:00
|
|
|
PR_NUMBER: ${{github.event.number}}
|
2022-03-10 16:17:01 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2022-03-28 15:17:04 +03:00
|
|
|
with:
|
|
|
|
# If this is a pull request, make sure we check out its head rather than the
|
|
|
|
# automatically generated merge commit, so that the coverage diff excludes
|
|
|
|
# unrelated changes in the base branch
|
2022-03-30 15:02:34 +03:00
|
|
|
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
|
2022-03-10 16:17:01 +03:00
|
|
|
|
|
|
|
- name: Yarn cache
|
|
|
|
uses: c-hive/gha-yarn-cache@v2
|
|
|
|
|
|
|
|
- name: Install Deps
|
|
|
|
run: "./scripts/ci/install-deps.sh --ignore-scripts"
|
|
|
|
|
|
|
|
- name: Run tests with coverage
|
|
|
|
run: "yarn install && yarn reskindex && yarn coverage"
|
|
|
|
|
|
|
|
- name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v2
|
|
|
|
with:
|
2022-03-14 14:01:02 +03:00
|
|
|
fail_ci_if_error: false
|
2022-03-10 16:17:01 +03:00
|
|
|
verbose: true
|