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

38 lines
1.5 KiB
YAML
Raw Normal View History

2021-06-09 14:17:12 +03:00
name: Develop jobs
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
2021-06-09 14:17:12 +03:00
end-to-end:
runs-on: ubuntu-latest
2021-06-09 14:17:49 +03:00
container: vectorim/element-web-ci-e2etests-env:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: End-to-End tests
run: ./scripts/ci/end-to-end-tests.sh
- name: Archive logs
uses: actions/upload-artifact@v2
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-14 17:29:18 +03:00
uses: matrix-org/github-action-benchmark@jsperfentry
with:
tool: 'jsperformanceentry'
output-file-path: test/end-to-end-tests/performance-entries.json
external-data-json-path: ./cache/benchmark-data-template.json
fail-on-alert: false
- name: Push benchmark result
2021-06-15 10:59:51 +03:00
# if: ${{ github.ref == 'refs/heads/develop' }}
run: git push 'https://RiotRobot:${{ secrets.DEPLOY_GH_PAGES }}@github.com/matrix-org/matrix-react-sdk.git' gh-pages:gh-pages