Files
devops-directive-docker-course/11-development-workflow/docker-compose-test.yml
2023-02-21 19:33:24 -05:00

13 lines
200 B
YAML

# Overlay configuration to run tests
services:
api-node:
command:
- "npm"
- "run"
- "test"
api-golang:
command:
- "go"
- "test"
- "-v"
- "./..."