From 1c394dff7218ba2412fb3752bf1e0ebfefcba1bd Mon Sep 17 00:00:00 2001 From: Jared Date: Wed, 25 Jun 2025 15:11:12 +0200 Subject: [PATCH] fixed push image --- Jenkinsfile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7c2d107..68c178c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,18 +14,18 @@ pipeline { } stages { - // stage('Install Dependencies') { - // steps { - // sh 'npm ci' - // } - // } + stage('Install Dependencies') { + steps { + sh 'npm ci' + } + } - // stage('Test & Security Audit') { - // steps { - // echo 'Start checking security vulnerabilities in npm packages' - // sh 'npm audit' - // } - // } + stage('Test & Security Audit') { + steps { + echo 'Start checking security vulnerabilities in npm packages' + sh 'npm audit' + } + } // stage('Build') { // when {