Deploying new projects started failing on Netlify. Checking the logs I see something that was not in the logs on previous successful deploys:
Treating warnings a
Simply change the build command to:
CI= yarn build
or
CI= npm build
Like the other posts said, it is due to the CI, so any warning will stop the build. The lines above just means, setting the CI variable to nothing, and then start the command yarn build.
CI
yarn build