ci: add port and debug log
Some checks failed
Build and Push Docker Image / build (push) Blocked by required conditions
Build and Push Docker Image / tests (push) Has been cancelled

This commit is contained in:
Lars Hampe 2024-11-05 15:51:13 +01:00
parent f1ed0d5f6c
commit 501e75b420
2 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,9 @@ jobs:
redis:
image: redis:7.4.1-alpine
command: redis-server --save 20 1 --loglevel warning --requirepass development
ports:
- 6379:6379
postgres:
image: postgres:17-alpine

View File

@ -5,5 +5,7 @@ export const redis = createClient({
url: import.meta.env.REDIS_URL,
})
console.log(import.meta.env)
redis.on('error', (err) => console.log('Redis Client Error', err))
await redis.connect()