mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
34 lines
1 KiB
YAML
34 lines
1 KiB
YAML
name: Test coverage
|
|
on:
|
|
pull_request: {}
|
|
push:
|
|
branches: [develop, main, master]
|
|
jobs:
|
|
test-coverage:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
# This must be set for fetchdep.sh to get the right branch
|
|
PR_NUMBER: ${{github.event.number}}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
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
|
|
ref: ${{ github.event.type == 'PullRequestEvent' && github.event.pull_request.head.sha || '' }}
|
|
|
|
- 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:
|
|
fail_ci_if_error: false
|
|
verbose: true
|