Files
report/.gitea/workflows/t2.yml
T
ttipo 75710b295e
Deploy / deploy (push) Failing after 0s
T2 probes / a-root-env-exists (push) Failing after 0s
T2 probes / b-frontend-env-exists (push) Failing after 0s
T2 probes / c-brace-korean-syntax (push) Successful in 0s
t2를 개별 프로브 잡 3개로 분리, 완료된 테스트 워크플로우 정리
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-19 05:06:33 +09:00

27 lines
485 B
YAML

name: T2 probes
on:
push:
branches: [main]
env:
DEPLOY_DIR: /home/deploy/stacks/_clients/blog_report
jobs:
a-root-env-exists:
runs-on: deploy
steps:
- run: test -f "$DEPLOY_DIR/.env"
b-frontend-env-exists:
runs-on: deploy
steps:
- run: test -f "$DEPLOY_DIR/frontend/.env.production"
c-brace-korean-syntax:
runs-on: deploy
steps:
- run: |
true || { echo "ERROR: 파일이 없습니다"; exit 1; }
echo ok