Mit jenkinsfile
This commit is contained in:
55
Jenkinsfile
vendored
55
Jenkinsfile
vendored
@@ -1,12 +1,61 @@
|
||||
Jenkinsfile (Declarative Pipeline)
|
||||
/* Requires the Docker Pipeline plugin */
|
||||
pipeline {
|
||||
agent { docker { image 'node:20.15.1-alpine3.20' } }
|
||||
agent any
|
||||
|
||||
environment {
|
||||
NODE_ENV = 'production'
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('build') {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
sh 'node --version'
|
||||
// Code aus dem Repository holen
|
||||
git branch: 'main', url: 'http://localhost:3003/Ismail/NodeMap.git'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Install Dependencies') {
|
||||
steps {
|
||||
script {
|
||||
// Node.js Version setzen
|
||||
nodejs('nodejs') {
|
||||
// Abhängigkeiten installieren
|
||||
sh 'npm install'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
script {
|
||||
nodejs('nodejs') {
|
||||
// Projekt bauen
|
||||
sh 'npm run build'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
script {
|
||||
nodejs('nodejs') {
|
||||
// Tests ausführen
|
||||
sh 'npm test'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
success {
|
||||
echo 'Build and tests were successful!'
|
||||
}
|
||||
failure {
|
||||
echo 'Build or tests failed.'
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user