

pipeline { agent { docker { image 'mcr.microsoft.com/playwright:v1.39.0-jammy' reuseNode true } } stages { 중략 ... stage('Deploy') { steps { sh ''' // 버전 꼭 맞추기! npm install -g netlify-cli@20.1.1 netlify --version ''' } } } post { always { junit 'jest-results/junit.xml' } } }