-
-
Notifications
You must be signed in to change notification settings - Fork 13
64 lines (61 loc) · 1.69 KB
/
ci.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
name: CI
on:
push:
branches: main
pull_request:
branches: main
jobs:
test-firefox:
name: Firefox Browser Tests
runs-on: windows-latest
strategy:
matrix:
firefox: ['89.0']
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Setup Firefox ${{ matrix.firefox }}
uses: browser-actions/setup-firefox@latest
with:
firefox-version: ${{ matrix.firefox }}
- run: npm ci
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: chomp test
env:
CI_BROWSER: C:\Program Files\Firefox_${{ matrix.firefox }}\firefox.exe
CI_BROWSER_FLAGS: -headless
test-chrome:
name: Chrome Browser Tests
runs-on: windows-latest
strategy:
matrix:
chrome: [
'913920', # August 2021
]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Setup Chrome ${{ matrix.chrome }}
uses: browser-actions/setup-chrome@latest
with:
chrome-version: ${{ matrix.chrome }}
- name: Set Chrome Path
run: $env:CI_BROWSER=$(where chrome)
- run: echo $env:CI_BROWSER
- run: npm ci
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: chomp test
env:
CI_BROWSER_FLAGS: --headless --screenshot