-
Notifications
You must be signed in to change notification settings - Fork 15
43 lines (37 loc) · 944 Bytes
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: End-to-end Tests
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
- 'release/**'
jobs:
e2e-test:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: "./tools/run_docker.sh e2e-tests"
- name: Upload Playwright report
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 90
- name: Dump server logs
if: failure()
run: docker logs deephaven-plugins > /tmp/server-log.txt
- name: Upload server logs
if: failure()
uses: actions/upload-artifact@v4
with:
name: server-logs
path: /tmp/server-log.txt