Use Chrome 116 for e2e tests (#9778)

* Use Chrome 116 for e2e tests

* Fix indentation
This commit is contained in:
Neil MacDougall 2023-09-26 13:05:22 +01:00 committed by GitHub
parent 4a2f55c664
commit a5ecb679ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -36,7 +36,15 @@ jobs:
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: '14.x' node-version: '14.x'
- name: Install Chrome 116
run: |
sudo apt-get install -y wget
cd /tmp
wget -q http://mirror.cs.uchicago.edu/google-chrome/pool/main/g/google-chrome-stable/google-chrome-stable_116.0.5845.187-1_amd64.deb
sudo apt-get install -y --allow-downgrades ./google-chrome-stable_116.0.5845.187-1_amd64.deb
google-chrome --version
- name: Install packages - name: Install packages
run: yarn install:ci run: yarn install:ci