shot in the dark to fix tsc failure during CI

This commit is contained in:
Maciek Nowacki 2021-03-01 12:05:41 -07:00
parent f2ad95de03
commit 9a38d5f0a8

4
Jenkinsfile vendored
View File

@ -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: [
}
}
}
}
}