added Jenkinsfile.
test/pipeline/head This commit looks good

This commit is contained in:
2021-10-11 11:44:10 +02:00
parent 9259e7bbf5
commit 405f42a399
2 changed files with 23 additions and 0 deletions
+2
View File
@@ -118,3 +118,5 @@ dist
.yarn/install-state.gz .yarn/install-state.gz
.pnp.* .pnp.*
.idea
Vendored
+21
View File
@@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}