From b442cdda21dc84280025afca18fe1265cd49131d Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 26 Mar 2025 15:55:24 -0700 Subject: [PATCH] add app integration testing workflow --- docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 3211f0f..a3153d6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,6 +9,18 @@ services: - redis volumes: - .:/usr/src/app + + app-integration-test: + build: . + command: npm run start:dev integration-testing + ports: + - "4000:4000" + env_file: .env + depends_on: + - redis + volumes: + - .:/usr/src/app + test: build: . command: npm run test