Since all of our CI scripts are run with BASH, we need to make sure that any unexpected non zero exit code instruction in the script should fail the CI run.
We need to add the snippet below to all our CI scripts:
set -eu -o pipefail
Note: After this change the lint tests are red, which is good, since they were failing before but the test was passing. There is an already created issue for that: #4605
Since all of our CI scripts are run with BASH, we need to make sure that any unexpected non zero exit code instruction in the script should fail the CI run.
We need to add the snippet below to all our CI scripts:
Note: After this change the lint tests are red, which is good, since they were failing before but the test was passing. There is an already created issue for that: #4605