ci: add redis for testing
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
Build and Push Docker Image / tests (push) Has been cancelled

This commit is contained in:
Lars Hampe 2024-11-05 15:40:06 +01:00
parent 8657228e02
commit f1ed0d5f6c

View File

@ -6,6 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis:7.4.1-alpine
command: redis-server --save 20 1 --loglevel warning --requirepass development
postgres:
image: postgres:17-alpine
@ -44,4 +47,6 @@ jobs:
run: bun test:api
env:
NODE_ENV: test
POSTGRES_URL: postgres://postgres:postgres@postgres:5432/postgres
POSTGRES_URL: postgres://postgres:postgres@postgres:5432/postgres
REDIS_URL: redis://redis:6379
REDIS_PASSWORD: development