diff --git a/.gitignore b/.gitignore index a2a1041..1369117 100644 --- a/.gitignore +++ b/.gitignore @@ -118,3 +118,5 @@ dist .yarn/install-state.gz .pnp.* +.idea + diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b982250 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +}