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
2026-04-01 12:00:00 +08:00
committed by GitHub
parent 955aa8ced0
commit 241ca72f0e
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,
});
}