15 lines
216 B
YAML
15 lines
216 B
YAML
# Overlay configuration to run tests
|
|
version: "3.9"
|
|
services:
|
|
api-node:
|
|
command:
|
|
- "npm"
|
|
- "run"
|
|
- "test"
|
|
api-golang:
|
|
command:
|
|
- "go"
|
|
- "test"
|
|
- "-v"
|
|
- "./..."
|