Testing: disable puppeteer/chrome sandbox in Github Actions for Ubuntu 24.04 (#1657)

--disable-setuid-sandbox deemed acceptable by Yun as it's for Github Actions only
This commit is contained in:
Eoghan Murray
2025-03-07 12:48:48 +00:00
committed by GitHub
parent 6f4e691f39
commit fd9d2747c6
8 changed files with 16 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ export async function launchPuppeteer(
width: 1920,
height: 1080,
},
args: ['--no-sandbox'],
args: ['--no-sandbox', '--disable-setuid-sandbox'],
...options,
});
}