mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: Tests
|
|
on:
|
|
pull_request: { }
|
|
push:
|
|
branches: [ develop, master ]
|
|
repository_dispatch:
|
|
types: [ upstream-sdk-notify ]
|
|
jobs:
|
|
jest:
|
|
name: Jest with Codecov
|
|
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_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
|
|
|
|
- name: Yarn cache
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
cache: 'yarn'
|
|
|
|
- name: Install Deps
|
|
run: "./scripts/ci/install-deps.sh --ignore-scripts"
|
|
|
|
- name: Run tests with coverage
|
|
run: "yarn coverage"
|
|
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@v2
|
|
with:
|
|
fail_ci_if_error: false
|
|
verbose: true
|
|
override_commit: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
|