-
-
Notifications
You must be signed in to change notification settings - Fork 31
57 lines (48 loc) · 1.23 KB
/
end-to-end-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
name: End-to-end Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
install-cypress-webifc:
runs-on: ubuntu-20.04
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3
- name: Install Cypress WebIfc
id: install-cypress-webifc
uses: cypress-io/github-action@v6
with:
runTests: false
build: yarn build-share
- name: Save build artifacts
id: build-artifacts
uses: actions/upload-artifact@v3
with:
name: build-webifc-${{ github.sha }}
if-no-files-found: error
path: docs/
run-cypress-on-linux-webifc:
runs-on: ubuntu-20.04
needs: install-cypress-webifc
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3
- name: Restore build artifacts
id: restore-artifacts
uses: actions/download-artifact@v3
with:
name: build-webifc-${{ github.sha }}
path: docs/
- name: E2E Tests on Google Chrome
id: e2e-on-google-chrome
uses: cypress-io/github-action@v6
with:
browser: chrome
start: node config/serve.js