mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
style: format .mcp.json and gh.ts with oxfmt
This commit is contained in:
@@ -2,10 +2,7 @@
|
||||
"mcpServers": {
|
||||
"playwright-test": {
|
||||
"command": "pnpm",
|
||||
"args": [
|
||||
"dlx",
|
||||
"@playwright/mcp@latest"
|
||||
]
|
||||
"args": ["dlx", "@playwright/mcp@latest"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,11 +74,10 @@ export async function createPr(options: PrOptions): Promise<PrResult> {
|
||||
}
|
||||
pass('Committed test file')
|
||||
|
||||
const push = spawnSync(
|
||||
'git',
|
||||
['push', '-u', 'origin', branchName],
|
||||
{ encoding: 'utf-8', stdio: 'pipe' }
|
||||
)
|
||||
const push = spawnSync('git', ['push', '-u', 'origin', branchName], {
|
||||
encoding: 'utf-8',
|
||||
stdio: 'pipe'
|
||||
})
|
||||
if (push.status !== 0) {
|
||||
fail('Git push failed', push.stderr.trim())
|
||||
return { success: false, error: push.stderr.trim() }
|
||||
|
||||
Reference in New Issue
Block a user