There's a file called launch.sh
in our Create React App, that is used to publish things to the CDN. One of the lines in there says export CI=true
. I have no idea what "CI" means in this context, and what it does.
Read the docs, as ever: https://facebook.github.io/create-react-app/docs/running-tests#continuous-integration
Continuous Integration
By default
npm test
runs the watcher with interactive CLI. However, you can force it to run tests once and finish the process by setting an environment variable calledCI
.When creating a build of your application with
npm run build
linter warnings are not checked by default. Likenpm test
, you can force the build to perform a linter warning check by setting the environment variableCI
. If any warnings are encountered then the build fails.[...]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With