added Jenkinsfile.
All checks were successful
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
.gitignore vendored
View File

@@ -118,3 +118,5 @@ dist
.yarn/install-state.gz
.pnp.*
.idea

21
Jenkinsfile vendored Normal file
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....'
}
}
}
}