Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-08-06 12:52:43 +00:00
parent 4205433961
commit ee19b6c9c8
77 changed files with 35 additions and 25 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ services:
interval: 30s
retries: 3
start_period: 5s
test: 'CMD-SHELL node -e "require(''http'').get(''http://localhost:8008/health'',
res => (res.statusCode >= 200 && res.statusCode < 400) ? process.exit(0) :
process.exit(1)).on(''error'', () => process.exit(1))"
test: 'node -e "require(''http'').get(''http://localhost:8008/health'', res
=> { const allowed = [200, 204, 301, 302, 304]; process.exit(allowed.includes(res.statusCode)
? 0 : 1); }).on(''error'', () => process.exit(0));"
'
timeout: 3s