fixing function calls
This commit is contained in:
parent
75c999a54f
commit
1c96faf1f1
@ -4,20 +4,20 @@ pipeline {
|
|||||||
stages {
|
stages {
|
||||||
stage('Build C#') {
|
stage('Build C#') {
|
||||||
steps {
|
steps {
|
||||||
dotnetRestore ("Selector.Core.sln")
|
dotnetRestore project: "Selector.Core.sln"
|
||||||
dotnetBuild ("Selector.Core.sln")
|
dotnetBuild project: "Selector.Core.sln"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build Javascript') {
|
stage('Build Javascript') {
|
||||||
steps {
|
steps {
|
||||||
sh ("npm ci")
|
sh "npm ci"
|
||||||
sh ("npm run build --if-present")
|
sh "npm run build --if-present"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
dotnetTest ("Selector.Core.sln")
|
dotnetTest project: "Selector.Core.sln"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
|
Loading…
Reference in New Issue
Block a user