style: format .mcp.json and gh.ts with oxfmt

This commit is contained in:
bymyself
2026-03-28 19:00:48 -07:00
parent c7017af644
commit a1c9fc38be
2 changed files with 5 additions and 9 deletions

View File

@@ -2,10 +2,7 @@
"mcpServers": {
"playwright-test": {
"command": "pnpm",
"args": [
"dlx",
"@playwright/mcp@latest"
]
"args": ["dlx", "@playwright/mcp@latest"]
}
}
}

View File

@@ -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() }