You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
We have created a pipeline to build a react website.
We followed steps to create a pipeline similar to the instructions on this page.
https://support.atlassian.com/bitbucket-cloud/docs/use-artifacts-in-steps/
We are specifically using the image:
image: node:10.15.3
We have steps like this:
step: &buildTest
script:
- npm install
- npm run build
If we have pushed up to bitbucket and forgot to add a file in the push, the build will fail.
The pipeline does not pick up this failure and just keeps running (and using all our build minutes, until we either catch it or it times out.)
It would be extremely useful if the pipelines could detect these failures to stop the pipeline (and/or if we could decide the timeout values for these pipelines).