chore: fix action debugging option parsing (#9796)

This commit is contained in:
Nikolay Vitkov 2023-03-07 17:00:05 +01:00 committed by GitHub
parent 7eda506c85
commit 0680b498c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,11 +112,11 @@ async function main() {
const githubActionDebugging = process.env['RUNNER_DEBUG'] const githubActionDebugging = process.env['RUNNER_DEBUG']
? { ? {
DEBUG: 'puppeteer:*', DEBUG: 'puppeteer:*',
EXTRA_LAUNCH_OPTIONS: { EXTRA_LAUNCH_OPTIONS: JSON.stringify({
extraPrefsFirefox: { extraPrefsFirefox: {
'remote.log.level': 'Trace', 'remote.log.level': 'Trace',
}, },
}, }),
} }
: {}; : {};