Tuesday, November 17, 2020

mas sobre buildconfig

 pipeline {

agent any

tools {nodejs "node"}

stages {

stage('Cloning Git') {
steps {
git 'https://github.com/gustavoapolinario/node-todo-frontend'
}
}

stage('Install dependencies') {
steps {
sh 'npm install'
}
}

stage('Test') {
steps {
sh 'npm test'
}
}
}
}

No comments: