Files
test/.jenkins/scripts/build.sh
T

10 lines
147 B
Bash
Raw Normal View History

2024-10-22 20:31:34 +03:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2024-10-22 20:41:40 +03:00
sh 'npm install'
2024-10-22 20:31:34 +03:00
}
}
}
}