From a0eb86be7b96cafd12cb53c65d10df6ea134ddc9 Mon Sep 17 00:00:00 2001 From: Andreas Fahrecker Date: Wed, 10 Apr 2024 01:43:07 +0200 Subject: [PATCH] Jenkins Test 2 --- Jenkinsfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b4b5982..aea97da 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,11 +4,11 @@ pipeline { agent { label 'linux' } - when { - beforeAgent true; - branch 'main' - } stages { + when { + beforeAgent true; + branch 'main' + } stage('NPM Install') { steps { sh 'npm clean-install' @@ -16,7 +16,8 @@ pipeline { } stage('Compile Adblock List') { steps { - sh 'npm run compile' + // sh 'npm run compile' + sh 'echo "Compiling Adblock List...">test.txt' } } stage('git push') {