14 lines
242 B
Plaintext
14 lines
242 B
Plaintext
node('Lithium'){
|
|
stage('get new version to repo') {
|
|
checkout scm
|
|
}
|
|
|
|
stage('Install dependencies') {
|
|
sh 'npm install'
|
|
}
|
|
|
|
stage('build project') {
|
|
sh 'npm run build-test:lithium'
|
|
}
|
|
}
|