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

42 lines
1.6 KiB
YAML
Raw Normal View History

name: Develop
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
2021-06-09 13:17:12 +02:00
end-to-end:
runs-on: ubuntu-latest
2021-06-09 13:17:49 +02:00
container: vectorim/element-web-ci-e2etests-env:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Prepare End-to-End tests
run: ./scripts/ci/prepare-end-to-end-tests.sh
- name: Run End-to-End tests
run: ./scripts/ci/run-end-to-end-tests.sh
- name: Archive logs
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
path: |
test/end-to-end-tests/logs/**/*
test/end-to-end-tests/synapse/installations/consent/homeserver.log
retention-days: 14
- name: Download previous benchmark data
uses: actions/cache@v1
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- name: Store benchmark result
2021-06-15 11:01:05 +02:00
uses: matrix-org/github-action-benchmark@jsperfentry-1
with:
tool: 'jsperformanceentry'
output-file-path: test/end-to-end-tests/performance-entries.json
fail-on-alert: false
2021-06-15 16:19:47 +02:00
comment-on-alert: false
2021-06-15 11:59:57 +02:00
# Only temporary to monitor where failures occur
alert-comment-cc-users: '@gsouquet'
2021-06-15 11:10:22 +02:00
github-token: ${{ secrets.DEPLOY_GH_PAGES }}
2021-06-15 11:59:57 +02:00
auto-push: ${{ github.ref == 'refs/heads/develop' }}