How to automate testing network requests of current project build?

Hi @veely1,

Welcome to the Postman community! There are some options available in the configure section for a Jenkins project which may assist you in achieving your use case. After creating a Jenkins project, if you click on Configure, you have an option to execute shell commands in the ‘Build’ section where you can add the requisite commands to run the server locally as well as run collections using Newman as shown here: https://learning.getpostman.com/docs/postman/collection_runs/integration_with_jenkins/

If you have a Makefile stored in the Github repository, you can add the specific Github repository to the Source Code Management section and type in ‘make’ in the Execute Shell space to run the commands in the Makefile which is stored in the Github repository.

The following thread maybe helpful to you as well: Is it possible to execute an external program from Postman?