From dcc84b7a9e5dfc841f2ad35983c0176954958f0b Mon Sep 17 00:00:00 2001 From: "seonkyu.kim" Date: Fri, 12 Jul 2024 12:59:15 +0900 Subject: [PATCH] =?UTF-8?q?[=F0=9F=91=B7]=20Jenkins=20Test6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3d65f89..5a7f86a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,16 +1,11 @@ pipeline { agent any - environment { DOCKER_CONTAINER_NAME = 'stein-node' APP_VOLUME_FRONT = '/home/node/front' // 컨테이너 내부 경로 - NODEJS_VERSION = 'JenStein' // 위에서 설정한 NodeJS 설치 이름 } - tools { - nodejs "${NODEJS_VERSION}" - } stages { stage('Clone Repository') { steps { @@ -18,15 +13,6 @@ pipeline { } } - stage('Build and Test') { - steps { - dir('front') { - sh 'npm install' - sh 'npm test' - } - } - } - stage('Deploy') { steps { script {