set up a global credential create pipeline configure build steps pipeline{ agent any tools {nodejs "NodeJS"} stages { stage('Clone Repository'){ steps{ git branch: 'test', credentialsId: 'LP_DEV_SERVER', url: 'git@github.com:littlesprogrammers/Freelaneer_Backend_Microservice_Shared_User.git' } } stage('Install Dependencies'){ steps { sh 'npm install' } } ...