Should not the process ends up with non zero exit code in case of wrong argument?
For example, in this case:
node npm-delay FIVE && node sever.js
server should not be started, right?
At CI/CD scenario the argument can be an ENV, not hardcoded one:
node npm-delay $SERVER_START_DELAY && node sever.js
Should not the process ends up with non zero exit code in case of wrong argument?
For example, in this case:
node npm-delay FIVE && node sever.jsserver should not be started, right?
At CI/CD scenario the argument can be an ENV, not hardcoded one: