Files
html/api/ambre-pw-check.php
opus 5ed6857e78
Some checks failed
WEVAL NonReg / nonreg (push) Has been cancelled
auto-sync-2345
2026-04-21 23:45:02 +02:00

5 lines
164 B
PHP

<?php
header("Content-Type: application/json");
$proc = @shell_exec("pgrep -af "playwright test" | head -5");
echo json_encode(["running"=>trim($proc ?: "none")]);