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

15 lines
269 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:37:26 +03:00
sh 'yarn && yarn build'
2024-10-22 20:31:34 +03:00
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
}
}
}
}