Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

# TZ fix: GitHub Actions runners (ubuntu-latest) default a UTC. Date.prototype
# e Intl.DateTimeFormat cacheiam TZ na startup do Node, antes do vitest.config
# rodar. Setar test.env no vitest.config NÃO funciona (Node já cacheou).
# Solução: env: TZ no nível do workflow → herdado por todos os steps de todos
# os jobs → Node nasce já com TZ correto em CI.
# Snapshots e toLocaleString consistentes com dev (VPS BRT).
env:
TZ: America/Sao_Paulo

jobs:
smoke:
name: Smoke tests (rotas + health-check)
Expand Down
Loading