Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(do not merge): use latest chromium #1941

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,6 @@ jobs:
large-packages: true
docker-images: false
swap-storage: true

# we found on 26 Sep that using Chrome 129 mysteriously broke ci at setupMetamask step
# with the following error: > Cannot read properties of undefined (reading 'waitForTimeout')
# so we are reverting to Chrome 128 on ci
# https://www.ubuntuupdates.org/package_logs?type=ppas&vals=8
- name: Set up Chrome 128
run: |
wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_128.0.6613.137-1_amd64.deb
sudo apt-get install ./google-chrome-stable_128.0.6613.137-1_amd64.deb

- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -108,10 +99,10 @@ jobs:
start: yarn start
command: >-
${{
(matrix.test.type == 'orbit-eth') && 'yarn test:e2e:orbit --browser chrome' ||
(matrix.test.type == 'orbit-custom' && 'yarn test:e2e:orbit:custom-gas-token --browser chrome') ||
(matrix.test.type == 'cctp' && 'yarn test:e2e:cctp --browser chrome') ||
'yarn test:e2e --browser chrome'
(matrix.test.type == 'orbit-eth') && 'yarn test:e2e:orbit --browser chromium' ||
(matrix.test.type == 'orbit-custom' && 'yarn test:e2e:orbit:custom-gas-token --browser chromium') ||
(matrix.test.type == 'cctp' && 'yarn test:e2e:cctp --browser chromium') ||
'yarn test:e2e --browser chromium'
}}
wait-on: http://127.0.0.1:3000
wait-on-timeout: 120
Expand Down
Loading