6 lines
98 B
Groovy
6 lines
98 B
Groovy
stage('install') {
|
|
steps {
|
|
echo 'starting installing'
|
|
sh 'npm install'
|
|
}
|
|
} |