diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..b9e0987 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1 @@ +new line added diff --git a/Jenkinsfile b/Jenkinsfile index 84530c2..72477e8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,28 +1,30 @@ -pipeline { - - agent any - - stages { - - stage('Install Dependencies') { - steps { - sh 'npm install' +pipeline { + agent any + stages{ + stage("new"){ + steps{ + echo "new sources" + } } - } - - stage('Test') { - steps { - sh 'echo "testing application..."' + stage("advanced"){ + steps{ + echo "advanced resource" + } } - } - - stage("Deploy application") { - steps { - sh 'echo "deploying application..."' - } - - } - - } - - } + stage("advanced level testing"){ + steps{ + echo "advanced level resources" + } + } + stage("BUILDING"){ + steps{ + echo "Building the sources" + } + } + stage("analyze"){ + steps{ + echo "analyzing the sources" + } + } + } +}