Skip to content

Commit 3bdfe2c

Browse files
committed
Fix CI: remove working-directory for standalone repo
The workflow assumed a monorepo subdirectory layout.
1 parent a8fbddf commit 3bdfe2c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/playwright.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ jobs:
1515
test:
1616
timeout-minutes: 60
1717
runs-on: ubuntu-latest
18-
defaults:
19-
run:
20-
working-directory: bistro-e2e-python
2118
steps:
2219
- uses: actions/checkout@v4
2320

@@ -41,16 +38,16 @@ jobs:
4138
if: always()
4239
with:
4340
name: test-results
44-
path: bistro-e2e-python/test-results/
41+
path: test-results/
4542

4643
- uses: actions/upload-artifact@v4
4744
if: always()
4845
with:
4946
name: junit-results
50-
path: bistro-e2e-python/junit-results/
47+
path: junit-results/
5148

5249
- name: Publish JUnit Report
5350
uses: mikepenz/action-junit-report@v4
5451
if: always()
5552
with:
56-
report_paths: "bistro-e2e-python/junit-results/*.xml"
53+
report_paths: "junit-results/*.xml"

0 commit comments

Comments
 (0)