@@ -128,7 +128,7 @@ spec:
128128 when { expression { env. PIPELINE_SKIPPED != ' true' } }
129129 steps {
130130 container(' node' ) {
131- dir(' sophia' ) {
131+ dir(' app/ sophia' ) {
132132 sh ''' #!/bin/bash
133133 set -euo pipefail
134134
@@ -147,7 +147,7 @@ spec:
147147 when { expression { env. PIPELINE_SKIPPED != ' true' } }
148148 steps {
149149 container(' node' ) {
150- dir(' sophia' ) {
150+ dir(' app/ sophia' ) {
151151 sh ''' #!/bin/bash
152152 set -euo pipefail
153153 pnpm lint
@@ -161,7 +161,7 @@ spec:
161161 when { expression { env. PIPELINE_SKIPPED != ' true' } }
162162 steps {
163163 container(' node' ) {
164- dir(' sophia' ) {
164+ dir(' app/ sophia' ) {
165165 sh ''' #!/bin/bash
166166 set -euo pipefail
167167 pnpm typecheck
@@ -175,7 +175,7 @@ spec:
175175 when { expression { env. PIPELINE_SKIPPED != ' true' } }
176176 steps {
177177 container(' node' ) {
178- dir(' sophia' ) {
178+ dir(' app/ sophia' ) {
179179 sh ''' #!/bin/bash
180180 set -euo pipefail
181181 pnpm test -- --ci --coverage
@@ -189,7 +189,7 @@ spec:
189189 when { expression { env. PIPELINE_SKIPPED != ' true' } }
190190 steps {
191191 container(' node' ) {
192- dir(' sophia' ) {
192+ dir(' app/ sophia' ) {
193193 sh ''' #!/bin/bash
194194 set -euo pipefail
195195 pnpm build
@@ -204,7 +204,7 @@ spec:
204204 when { expression { env. PIPELINE_SKIPPED != ' true' } }
205205 steps {
206206 container(' node' ) {
207- dir(' sophia' ) {
207+ dir(' app/ sophia' ) {
208208 sh ''' #!/bin/bash
209209 set -euo pipefail
210210
@@ -244,7 +244,7 @@ spec:
244244 }
245245 steps {
246246 container(' node' ) {
247- dir(' sophia' ) {
247+ dir(' app/ sophia' ) {
248248 script {
249249 def sonarConfig = getSonarProjectConfig()
250250 echo " SonarQube Analysis: project=${ sonarConfig.projectKey} , env=${ sonarConfig.env} , enforce=${ sonarConfig.shouldEnforce} "
@@ -309,7 +309,7 @@ spec:
309309 }
310310 steps {
311311 container(' node' ) {
312- dir(' sophia' ) {
312+ dir(' app/ sophia' ) {
313313 script {
314314 withCredentials([string(credentialsId : ' npm-publish-token' , variable : ' NPM_TOKEN' )]) {
315315 sh ''' #!/bin/bash
@@ -330,7 +330,7 @@ spec:
330330 when { expression { env. PIPELINE_SKIPPED != ' true' } }
331331 steps {
332332 container(' node' ) {
333- dir(' sophia' ) {
333+ dir(' app/ sophia' ) {
334334 script {
335335 // Stash UMD bundle + CSS for downstream pipelines (e.g. elohim-app)
336336 stash(
0 commit comments