From 0962636f250ff0c4092f2cd72297203e5c3811d3 Mon Sep 17 00:00:00 2001 From: veenm Date: Sun, 19 Jan 2025 23:27:23 +0100 Subject: [PATCH] npm buildssszzz --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index df55b14..70d4dfc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,10 @@ pipeline { agent any + + tools { + nodejs "nodeJS-23" + } + environment { SSH_CREDENTIALS_ID = 'ssh-true-nas' // ID van de SSH-sleutel in Jenkins TRUENAS_HOST = '192.168.2.31' // IP-adres of hostname van TrueNAS @@ -20,6 +25,7 @@ pipeline { steps { script { // Bouw het Quarkus-project (assumeert Maven als build tool) + sh 'npm install' sh 'npm run build' } }