-
Notifications
You must be signed in to change notification settings - Fork 48
89 lines (81 loc) · 2.62 KB
/
e2e-tests.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: 'E2E tests'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
contracts-node-binary:
runs-on: ubuntu-latest
steps:
- run: |
curl -L "https://github.com/paritytech/substrate-contracts-node/releases/latest/download/substrate-contracts-node-linux.tar.gz" -O
ls -lash
- name: Save node artifact
uses: actions/upload-artifact@v4
with:
name: substrate-contracts-node
if-no-files-found: error
path: substrate-contracts-node-linux.tar.gz
ui-chrome-tests:
timeout-minutes: 15
runs-on: ubuntu-latest
container:
image: cypress/browsers:latest
options: --user 1001
needs: [contracts-node-binary]
strategy:
# when one test fails, DO NOT cancel the other
# containers, because this will kill Cypress processes
# leaving the Dashboard hanging ...
# https://github.com/cypress-io/github-action/issues/48
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare test environment
uses: ./.github/actions/prepare
- name: 'UI Tests - Chrome'
uses: cypress-io/github-action@v6
with:
start: yarn start
wait-on: 'http://localhost:8081'
wait-on-timeout: 120
browser: chrome
config-file: cypress.config.ts
record: true
env:
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ui-firefox-tests:
timeout-minutes: 15
runs-on: ubuntu-latest
container:
image: cypress/browsers:latest
options: --user 1001
needs: [contracts-node-binary]
strategy:
# when one test fails, DO NOT cancel the other
# containers, because this will kill Cypress processes
# leaving the Dashboard hanging ...
# https://github.com/cypress-io/github-action/issues/48
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare test environment
uses: ./.github/actions/prepare
- name: 'UI Tests - Firefox'
uses: cypress-io/github-action@v6
with:
start: yarn start
wait-on: 'http://localhost:8081'
wait-on-timeout: 120
browser: firefox
config-file: cypress.config.ts
record: true
env:
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}