Skip to content

Commit

Permalink
fix: use ubuntu 22.04 for puppeteer sandbox compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Salvatore Laiso committed Jan 15, 2025
1 parent eccd25b commit 438c778
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion e2e/utils/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const withBrowser = (puppeteer: any, showBrowser: boolean) => async <T>(
const browser = await puppeteer.launch({
headless: !showBrowser,
ignoreHTTPSErrors: true,
args: ["--no-sandbox"],
});

try {
Expand Down

0 comments on commit 438c778

Please sign in to comment.