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
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ jobs:
env:
NODE_ENV: test
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/orbitstream_test
JWT_SECRET: test-secret
JWT_SECRET: test-secret-at-least-32-chars-long-for-ci
STELLAR_NETWORK: TESTNET
STELLAR_HORIZON_URL: https://horizon-testnet.stellar.org
STELLAR_NETWORK_PASSPHRASE: "Test SDF Network ; September 2015"
PLATFORM_RECEIVING_ACCOUNT: "GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWHF"
REDIS_URL: redis://localhost:6379
FRONTEND_URL: http://localhost:3000
PORT: 3001

services:
postgres:
Expand All @@ -54,3 +60,12 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis:7
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
Loading