diff --git a/.github/workflows/code-review.yaml b/.github/workflows/code-review.yaml index dbf891a6..6a9aaded 100644 --- a/.github/workflows/code-review.yaml +++ b/.github/workflows/code-review.yaml @@ -35,7 +35,7 @@ jobs: integration_tests: name: E2E Tests timeout-minutes: 10 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout diff --git a/e2e/utils/misc.ts b/e2e/utils/misc.ts index 1b9385bc..8212291d 100644 --- a/e2e/utils/misc.ts +++ b/e2e/utils/misc.ts @@ -14,7 +14,6 @@ export const withBrowser = (puppeteer: any, showBrowser: boolean) => async ( const browser = await puppeteer.launch({ headless: !showBrowser, ignoreHTTPSErrors: true, - args: ["--no-sandbox"], }); try {