12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage ("build") {
|
||
|
steps {
|
||
|
nodejs("NodeJS (17.4.0)") {
|
||
|
sh "npm run build"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|