Probando con clone

This commit is contained in:
2026-03-04 16:49:07 +01:00
parent e8eb925834
commit aeea6cfefd

View File

@@ -14,9 +14,17 @@ pipeline {
stages {
stage('📦 Install dependencies') {
steps {
sh 'git clone https://git.savefamilygps.net/alvarsanmartin/herramienta-migracion.git'
sh 'npm install -g yarn'
sh 'corepack enable'
sh 'corepack prepare yarn@4.12.0 --activate'
sh 'yarn install --immutable'
}
}
stage("🧱 Building") {
steps {
sh 'rm -rf dist/'
sh 'yarn run build'
}
}
stage("🏗 Deploying") {