mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
fa8c346dfa
* Split Cypress out into its own workflow * Improve PR Details job to use github-script and output labels * Fix wrongly using github.ref in workflow_run actions which always refer to develop * Update pr-details to be far more generic * Tweak how we fill command-prefix * Tweak cypress job to pass more params & fix if condition * Bring in external changes * Add docs * Use new composite action, and an action to update a status check based on this workflow run * Iterate approach
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
name: Tests
|
|
on:
|
|
pull_request: { }
|
|
push:
|
|
branches: [ develop, master ]
|
|
repository_dispatch:
|
|
types: [ upstream-sdk-notify ]
|
|
env:
|
|
# These must be set for fetchdep.sh to get the right branch
|
|
REPOSITORY: ${{ github.repository }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
jobs:
|
|
jest:
|
|
name: Jest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- 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 --ci"
|
|
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: coverage
|
|
path: |
|
|
coverage
|
|
!coverage/lcov-report
|
|
|
|
app-tests:
|
|
name: Element Web Integration Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
cache: 'yarn'
|
|
|
|
- name: Run tests
|
|
run: "./scripts/ci/app-tests.sh"
|