-
Notifications
You must be signed in to change notification settings - Fork 16
CI: Downgrade the Ubuntu version for the E2E Tests #1175
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
Conversation
|
276fc6f
to
51ebe45
Compare
@@ -13,7 +13,7 @@ concurrency: | |||
jobs: | |||
e2e-tests: | |||
name: Run E2E tests | |||
runs-on: ubuntu-latest | |||
runs-on: ubuntu-22.04 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As mentioned here: microsoft/playwright#30368, to fix the issue, we can either upgrade Playwright to 1.48.0 or downgrade Ubuntu. I tried upgrading the Playwright, but it did not work out.
@ryanwi let me know if it is okay to use this Ubuntu version for the e2e tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but let's wait for @ryanwi
ok, but can follow-up be done to get the playwright upgrade working? |
I created a PR to upgrade that last year #1154, and it is still open. 😄 🤷♂️ |
* setup package for e2e-js * use ubuntu-latest * avoid cache * no cache with ubuntu latest * use v1.48.2 * use ubuntu-22 * remove lock changes: * use latest node and ubuntu-22.04 for e2e tests * update 22 to 20
Description
Downgrade
ubuntu-latest
toubuntu-22.04
due to the known issue as mentioned here: microsoft/playwright#30368Type of change
Code snippets
In case of new feature or breaking changes, please include code snippets.