I’m using GitHub Actions in CI. When I run commands directly in YAML recipe: the output is colored: But then when I run the same command inside a bash script: It’s without colors: How can I propagate the colors through bash script to the CI output? Answer To enable colors, include this line in the bash script file: Cherry pick
Tag: continuous-integration
Twig Template Unit Testing
I began to think about Continuous Integration for the twig templates in Symfony. A template is independent logic. There are mistakes in the templates. But in the process of development I do not want …