Skip to content
Snippets Groups Projects
Commit 8d252220 authored by ismcarb's avatar ismcarb
Browse files

Update file .gitlab-ci.yml

parent 54f9f269
No related branches found
No related tags found
No related merge requests found
Pipeline #13353 failed
# The Docker image that will be used to build your app
# Especificar la imagen Docker que se usará para el entorno de construcción
image: node:lts
# Functions that should be executed before the build script is run
# Definir etapas si necesitas más control (opcional)
stages:
- build
# Tareas previas a la ejecución del script de construcción
before_script:
- npm ci
# Definir el trabajo principal para construir la aplicación
build_app:
stage: build
script:
- echo "Construyendo la aplicación..."
- npm run build
artifacts:
paths:
- dist/ # Cambia a la carpeta donde se generen tus artefactos
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment