From 438c77881aac0932c3348948f515db1d25f69b23 Mon Sep 17 00:00:00 2001 From: Salvatore Laiso Date: Wed, 15 Jan 2025 11:22:00 +0100 Subject: [PATCH] fix: use ubuntu 22.04 for puppeteer sandbox compatibility --- .github/workflows/code-review.yaml | 2 +- e2e/utils/misc.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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 {