本文主要是介绍Treating warnings as errors because process.env.CI = true. Most CI servers set it automatically.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题
通过控制台手动执行就不会有这样的错, 然后通过jenkins pipeline执行yarn build
后报错,如图所示
解决方法
改为执行CI=false yarn build
or CI='' yarn build
原因
CI=true
表示在自动化环境中运行对于警告类消息会导致失败
参考文档:https://docs.netlify.com/configure-builds/troubleshooting-tips/#build-fails-on-warning-message
这篇关于Treating warnings as errors because process.env.CI = true. Most CI servers set it automatically.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!