File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -44,11 +44,16 @@ jobs:
44
44
45
45
runs-on : ubuntu-20.04
46
46
47
+ # Chrome webdriver version is pinned to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790"
48
+ # These are installed even in the Firefox test due to `yarn` command which pulls the devDependency listed in package.json.
47
49
steps :
48
50
- name : install Firefox stable
49
51
run : |
50
52
sudo apt-get update
51
53
sudo apt-get install firefox
54
+ sudo apt-get install wget
55
+ sudo wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_110.0.5481.177-1_amd64.deb
56
+ sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
52
57
53
58
- name : Checkout Repo
54
59
uses : actions/checkout@master
You can’t perform that action at this time.
0 commit comments