Skip to content

Commit c51c64f

Browse files
odockaldgolovin
authored andcommitted
fix(ci): use correct glob pattern to e2e test artifacts
Signed-off-by: Ondrej Dockal <[email protected]>
1 parent 703c503 commit c51c64f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/e2e-main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ jobs:
126126
if: always()
127127
with:
128128
name: e2e-tests
129-
path: ./tests/**/output/
129+
path: ./**/tests/**/output/

.github/workflows/pr-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ jobs:
155155
if: always()
156156
with:
157157
name: e2e-tests
158-
path: ./tests/**/output/
158+
path: ./**/tests/**/output/

playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineConfig({
2626
reporter: [
2727
['list'],
2828
['junit', { outputFile: 'tests/output/junit-results.xml' }],
29-
['json', { outputFile: 'tess/output/json-results.json' }],
29+
['json', { outputFile: 'tests/output/json-results.json' }],
3030
['html', { open: 'never', outputFolder: 'tests/output/html-results/' }],
3131
],
3232

0 commit comments

Comments
 (0)