File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,20 @@ jobs:
45
45
# Whatever version of Firefox comes with 22.04 is causing Firefox
46
46
# startup to hang when launched by karma. Need to look further into
47
47
# why.
48
+
48
49
runs-on : ubuntu-20.04
49
50
51
+ # Chrome webdriver version is pinned to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790"
52
+ # These are installed even in the Firefox test due to `yarn` command which pulls the devDependency listed in package.json.
50
53
steps :
51
54
- name : install Firefox stable
52
55
run : |
53
56
sudo apt-get update
54
57
sudo apt-get install firefox
58
+ sudo apt-get install wget
59
+ 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
60
+ sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
61
+
55
62
- name : Checkout Repo
56
63
uses : actions/checkout@master
57
64
with :
You can’t perform that action at this time.
0 commit comments