I am building a pipeline and am running jest test's and wanted to create as jira/clickup ticket for the test's faild what's the best way to get this done
What i wanted to do is to capture the output of the jest test's and create a ticket in jira/clickup.
Below is the pipeline
image: atlassian/default-image:2
pipelines:
default:
- step:
name: "Install"
image: node:16
caches:
- node
script:
- npm install
- parallel:
- step:
name: "Test"
image: node:16
caches:
- node
script:
- npm test
the package.json is as below
{
"name": "node-app-jest",
"version": "1.0.0",
"description": "Node app with Jest test's",
"main": "server.js",
"scripts": {
"test": "jest --verbose --runInBand --forceExit",
"start": "node server"
},
Hey @Nataraj ,
Thank you for reaching out to Atlassian Community!
I noticed you have opened an internal support ticket with us about this same question, and it seems it was already resolved.
In this case, I will be sharing the solution of the ticket here :
We suggest using the jira-create-issue pipe insidean after-script section. Inside the after-script, you can check for the latest exit code using the variable 'BITBUCKET_EXIT_CODE'. If the exit code differs from 0, you can trigger the pipe.
- After-script documentation: https://support.atlassian.com/bitbucket-cloud/docs/configure-bitbucket-pipelinesyml/#after-script.
Thank you, @Nataraj .
Kind regards,
Patrik S
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.