circleci-orb icon indicating copy to clipboard operation
circleci-orb copied to clipboard

install-command doesn't fail when lint fails

Open david-wb opened this issue 4 years ago • 0 comments

The orb does not work as expected

  • what version of the orb are you currently using? cypress-io/cypress@1
  • paste the circle.yml file if possible or at least the relevant portion
install-command: |
  set -eo pipefail
  echo $FIREBASE_SERVICE_ACCOUNT > ./serviceAccount.json 
  npm install
  npm run lint
  • describe what you think should happen The step should fail
  • describe what happens Doesn't fail
    • screenshots and links to the CircleCI builds would be great

When the npm run lint command fails, the cypress/run job doesn't fail.

david-wb avatar Feb 20 '21 05:02 david-wb