adding function brackets

This commit is contained in:
Andy Pack 2023-04-24 00:28:39 +01:00
parent 64995e636b
commit 75c999a54f
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -4,20 +4,20 @@ pipeline {
stages { stages {
stage('Build C#') { stage('Build C#') {
steps { steps {
dotnetRestore "Selector.Core.sln" dotnetRestore ("Selector.Core.sln")
dotnetBuild "Selector.Core.sln" dotnetBuild ("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 ("Selector.Core.sln")
} }
} }
stage('Deploy') { stage('Deploy') {
@ -29,7 +29,7 @@ pipeline {
post { post {
always { always {
steps { steps {
cleanWs cleanWs()
} }
} }
} }