Skip to content

Commit 112e0d7

Browse files
authored
Install Chrome stable in GHA before running tests (#2613)
* install stable chrome * run aptget update * revert triggers * apply chrome installation to other workflows
1 parent c48114c commit 112e0d7

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/test-all.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Run All Tests
22

3-
on:
3+
on:
44
pull_request:
55
branches:
66
- master
@@ -20,6 +20,10 @@ jobs:
2020
uses: actions/setup-node@v1
2121
with:
2222
node-version: 10.x
23+
- name: install Chrome stable
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install google-chrome-stable
2327
- name: Test setup and yarn install
2428
run: |
2529
cp config/ci.config.json config/project.json

.github/workflows/test-changed.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
uses: actions/setup-node@v1
1414
with:
1515
node-version: 10.x
16+
- name: install Chrome stable
17+
run: |
18+
sudo apt-get update
19+
sudo apt-get install google-chrome-stable
1620
- name: Test setup and yarn install
1721
run: |
1822
cp config/ci.config.json config/project.json

0 commit comments

Comments
 (0)