ERROR npm ERR! errno 126, when running postman collections using maven in Jenkins

*I am trying to run postman collections using Maven in Jenkins. I get below errors when the pipeline is run. I can run these locally with ‘mvn clean verify’ in intellij and all tests run successfully. Our company started using Postman recently and I am bit lost as how to solve this issue and looking for some help.:-

[INFO] --- frontend-maven-plugin:1.6:npm (merge) @ ihtests ---
[INFO] Running 'npm run shipment-tests' in /var/jenkins/workspace/com.tcel_intests_merge/temp
[INFO] 
[INFO] > [email protected] shipment-tests /var/jenkins/workspace/com.trakcel_ihtests_merge/temp
[INFO] > newman run test/postmancollection/AcceptValidRequest.postman_collection.json -e test/PostmanEnv/Test.postman_environment.json --reporters cli,junit --reporter-junit-export newman.xml
[INFO] 
[ERROR] sh: /var/jenkins/workspace/com.tcel_intests_merge/temp/node_modules/.bin/newman: Permission denied
[ERROR] npm ERR! code ELIFECYCLE
[ERROR] npm ERR! errno 126
[ERROR] npm ERR! [email protected] shipment-tests: `newman run test/postmancollection/AcceptValidRequest.postman_collection.json -e test/PostmanEnv/Test.postman_environment.json --reporters cli,junit --reporter-junit-export newman.xml`
[ERROR] npm ERR! Exit status 126
[ERROR] npm ERR! 
[ERROR] npm ERR! Failed at the [email protected] shipment-tests script.

POM:-

<profiles>
        <profile>
            <id>merge</id>
        </profile>
    </profiles>

    <build>

        <plugins>
            <plugin>
                <groupId>com.github.eirslett</groupId>
                <artifactId>frontend-maven-plugin</artifactId>
                <version>1.6</version>
                <configuration>
                    <workingDirectory>.</workingDirectory>
                    <!-- where to install npm -->
                    <installDirectory>.</installDirectory>
                </configuration>
                <executions>
                    <execution>
                        <id>install-node-and-npm</id>
                        <goals>
                            <goal>install-node-and-npm</goal>
                        </goals>
                        <configuration>
                            <nodeVersion>v10.15.3</nodeVersion>
                            <npmVersion>6.14.8</npmVersion>
                        </configuration>
                    </execution>
                    <execution>
                        <id>npm install</id>
                        <goals>
                            <goal>npm</goal>
                        </goals>
                        <!-- Optional configuration which provides for running any npm command -->
                        <configuration>
                            <arguments>install</arguments>
                        </configuration>
                    </execution>
                    <execution>
                        <id>merge</id>
                        <goals>
                            <goal>npm</goal>
                        </goals>
                        <configuration>
                            <arguments>
                                **run shipment-tests**
                            </arguments>
                        </configuration>
                        <phase>generate-resources</phase>
                    </execution>
                </executions>

            </plugin>
        </plugins>
    </build>

Package.json:-

{
  "name": "postman-newman-jenkins",
  "version": "1.0.0",
  "description": "Project for storing postman tests",
  "main": "index.js",
  "directories": {
    "tests": "test/postmancollection"
  },
  "scripts": {

    "shipment-tests": "newman run test/postmancollection/AcceptValidRequest.postman_collection.json -e test/PostmanEnv/Test.postman_environment.json --reporters cli,junit --reporter-junit-export newman.xml"
  },
  "repository": {
    "type": "git",
    "url": "[email protected]:test-automation/intests.git"
  },
  "author": "JJ",
  "dependencies": {
    "newman": "^5.2.0",
    "npm": "^6.14.8"
  }
}

Pipeline:-

pipeline {
  agent {label '!master'}

   }
    stages {
        stage('Run ih api tests') {
            steps {
                sh 'mvn clean verify -P merge'

            }
        }
    }
}

It seems that you are getting a permission denied error.

[ERROR] sh: /var/jenkins/workspace/com.tcel_intests_merge/temp/node_modules/.bin/newman: Permission denied

Make sure newman has the right permissions to run with the Jenkins user.

@vdespa, Thanks. Can I ask how to do that. Sorry being silly. I have tried the below:-
pipeline {
agent {
docker {
image ‘node:10-alpine’
args ‘-p 3000:3000 -p 5000:5000’
args ‘-u 0:0’

        }
    }


    stages {
        stage('Run ih api tests') {
            steps {

                        //  sh 'sudo chown root:jenkins /var'
                        sh 'sudo usermod -a -G docker jenkins'
                        sh 'mvn clean verify -P merge'
            }
        }
        }

    }

Are you using Docker for running Newman? It seems that you now have a different setup.