element-web/.github/workflows/tests.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2022-04-21 13:55:32 +02:00
name: Tests
2022-03-10 14:17:01 +01:00
on:
2022-04-21 13:55:32 +02:00
pull_request: { }
2022-03-10 14:17:01 +01:00
push:
2022-04-21 13:55:32 +02:00
branches: [ develop, master ]
repository_dispatch:
types: [ upstream-sdk-notify ]
2022-03-10 14:17:01 +01:00
jobs:
2022-04-21 13:55:32 +02:00
jest:
name: Jest with Codecov
2022-03-10 14:17:01 +01:00
runs-on: ubuntu-latest
env:
# This must be set for fetchdep.sh to get the right branch
PR_NUMBER: ${{github.event.number}}
2022-03-10 14:17:01 +01:00
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_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
2022-03-10 14:17:01 +01:00
- name: Yarn cache
2022-04-21 13:55:32 +02:00
uses: actions/setup-node@v3
with:
cache: 'yarn'
2022-03-10 14:17:01 +01:00
- name: Install Deps
run: "./scripts/ci/install-deps.sh --ignore-scripts"
- name: Run tests with coverage
2022-04-21 13:55:32 +02:00
run: "yarn coverage"
2022-03-10 14:17:01 +01:00
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false
2022-03-10 14:17:01 +01:00
verbose: true
override_commit: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }}