-
Notifications
You must be signed in to change notification settings - Fork 5
94 lines (90 loc) · 3.48 KB
/
selenium_3.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
90
91
92
93
94
name: 'Selenium 3'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test_selenium_3_chrome:
name: 'Chrome'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
env:
DETECT_CHROMEDRIVER_VERSION: 'true'
- run: bash ./scripts/ci/setup/chrome.sh
- run: bash ./scripts/ci/jobs/test_selenium_3_chrome.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_selenium_3_chrome
path: __artifacts__/jest/*.png
test_selenium_3_firefox:
name: 'Firefox'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
- run: bash ./scripts/ci/setup/firefox.sh
- run: bash ./scripts/ci/jobs/test_selenium_3_firefox.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_selenium_3_firefox
path: __artifacts__/jest/*.png
test_selenium_3_edge:
name: 'Edge'
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
- run: bash ./scripts/ci/setup/edge.sh
- run: bash ./scripts/ci/jobs/test_selenium_3_edge.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_selenium_3_edge
path: __artifacts__/jest/*.png