ci: Migrate workflow tests to Playwright (#17370)

This commit is contained in:
shortstacked
2025-07-29 10:38:53 +01:00
committed by GitHub
parent 096e535f1e
commit 4f85f92daf
757 changed files with 138083 additions and 160832 deletions

View File

@@ -22,7 +22,9 @@ export class CommandRegistry {
private readonly moduleRegistry: ModuleRegistry,
private readonly logger: Logger,
) {
this.argv = argvParser(process.argv.slice(2));
// yargs-parser was resolving number like strings to numbers, which is not what we want
// eslint-disable-next-line id-denylist
this.argv = argvParser(process.argv.slice(2), { string: ['id'] });
this.commandName = process.argv[2] ?? 'start';
}