add app integration testing workflow

This commit is contained in:
2025-03-26 15:55:24 -07:00
parent 892ca7ec63
commit b442cdda21

View File

@@ -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