From c5167cfea53f5ded10f13bb23afb40dedb5bea0d Mon Sep 17 00:00:00 2001 From: Primakov Alexandr Alexandrovich Date: Wed, 16 Oct 2024 11:20:20 +0300 Subject: [PATCH] fix --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6f680c4..6fa14d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ pipeline { agent { docker { - image 'node:18' + image 'node:20' } } @@ -27,9 +27,11 @@ pipeline { } stage('archiving') { + steps { script { archiveArtifacts artifacts: 'coverage/*/**' } + } } stage('clean-all') {