File tree Expand file tree Collapse file tree 2 files changed +2
-15
lines changed Expand file tree Collapse file tree 2 files changed +2
-15
lines changed Original file line number Diff line number Diff line change 17
17
# Install Chrome so the correct version of webdriver can be installed by chromedriver when
18
18
# setting up the repo. This must be done to build and execute Auth properly.
19
19
- name : install Chrome stable
20
- # Install Chrome version 110.0.5481.177-1 as some Auth tests start to fail on version 111.
21
- # Temporary: Auth team will explore what's going wrong with the auth tests.
22
20
run : |
23
21
sudo apt-get update
24
- sudo apt-get install wget
25
- 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
26
- sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
22
+ sudo apt-get install google-chrome-stable
27
23
- uses : actions/checkout@v3
28
24
- name : Set up Node (16)
29
25
uses : actions/setup-node@v3
Original file line number Diff line number Diff line change 14
14
steps :
15
15
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
16
16
- name : install Chrome stable
17
- # Install Chrome version 110.0.5481.177-1 as test starts to fail on version 111.
18
- # Temporary: Auth team will explore what's going wrong with the auth tests.
19
17
run : |
20
18
sudo apt-get update
21
- sudo apt-get install wget
22
- 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
23
- sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
19
+ sudo apt-get install google-chrome-stable
24
20
- name : Checkout Repo
25
21
uses : actions/checkout@master
26
22
with :
@@ -48,16 +44,11 @@ jobs:
48
44
49
45
runs-on : ubuntu-20.04
50
46
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.
53
47
steps :
54
48
- name : install Firefox stable
55
49
run : |
56
50
sudo apt-get update
57
51
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
52
62
53
- name : Checkout Repo
63
54
uses : actions/checkout@master
You can’t perform that action at this time.
0 commit comments