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 {