I’m developing an application in React, with Travis continuous integration system. When executing the process, Travis complains about warnings, and fails to compile because it indicates:
Treating warnings as errors because
process.env.CI = true.
Most CI servers set it automatically.
```Failed to compile.````
I tried to modify the .travis.yml file and add the rule warnings_are_errors: false
as well