본문 바로가기
DevOps/Jenkins

Jenkins pipeline - npm build

by 돈코츠라멘 2020. 2. 12.

stage('npm') {

    nodejs(nodeJSInstallationName: 'node') { // 위의 설정에서 지정한 node 이름
        sh 'npm install && npm run build'
    }

}

'DevOps > Jenkins' 카테고리의 다른 글

Jenkins pipeline - Sphinx publish(HTML)  (0) 2020.02.12

댓글