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 +}