mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
I'm annoyed to scroll when I'm debugging the build server logs. I think, if you run `jest` with an environment variable `CI` set to true, it will not try to output colorized log and also does not output which test it's currently running. That should lead to the desired, smaller log on Travis CI.
18 lines
352 B
YAML
18 lines
352 B
YAML
version: "3.4"
|
|
|
|
services:
|
|
webapp:
|
|
environment:
|
|
- "CI=${CI}"
|
|
image: humanconnection/nitro-web:build-and-test
|
|
build:
|
|
context: webapp
|
|
target: build-and-test
|
|
backend:
|
|
environment:
|
|
- "CI=${CI}"
|
|
image: humanconnection/nitro-backend:build-and-test
|
|
build:
|
|
context: backend
|
|
target: build-and-test
|