From 9a38d5f0a8ce16cbcc1359a4f49d0400fa765ee1 Mon Sep 17 00:00:00 2001 From: Maciek Nowacki Date: Mon, 1 Mar 2021 12:05:41 -0700 Subject: [PATCH] shot in the dark to fix `tsc` failure during CI --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e25d96c..a66ceac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ podTemplate(label: label, inheritFrom: 'base', , containers: [ } stage('Build the Project') { container('base') { - sh "tsc" + sh "./node_modules/tsc/bin/tsc" } } stage('Run unit tests') { @@ -44,4 +44,4 @@ podTemplate(label: label, inheritFrom: 'base', , containers: [ } } } -} \ No newline at end of file +}