- On the Terminal, go to the project directory.
- Execute
git pullto get the latest code. - Execute
npm installto get all the dependencies. - Create a file called
loginCredentials.jsonand place your Jira credentials inside that file in the following manner:{ "user": "". "key": "" } - NOTE: The key is an API key you can get from your Jira account settings.
- If necessary, set the proper
boardIdin thepackage.jsonfile - Execute
npm run reportto get the SQA report.
- If you would like to filter out certain tickets from the report:
- Go to the app.js file.
- On line 32, append a
Stringto the array that contains a substring in the ticket- For example, if you want to exclude a ticket that has the data 'RAI-783 DEV: add something to the api', you can include "DEV:" in the array on line 32 of app.js to exclude the ticket from the SQA Report.