File tree Expand file tree Collapse file tree 5 files changed +35
-5
lines changed Expand file tree Collapse file tree 5 files changed +35
-5
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,6 @@ azure-deploy/
17
17
infra /
18
18
playwright-report /
19
19
test-results /
20
- test-results-docker /
20
+ test-results-docker /
21
+ test-results-docker-ent /
22
+ test-results-docker-org /
Original file line number Diff line number Diff line change 6
6
branches : [ main, master ]
7
7
jobs :
8
8
test :
9
- timeout-minutes : 60
9
+ timeout-minutes : 10
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
25
25
name : playwright-report
26
26
path : playwright-report/
27
27
retention-days : 30
28
+
29
+ test-api-org :
30
+ timeout-minutes : 15
31
+ runs-on : ubuntu-latest
32
+ steps :
33
+ - name : Run Playwright tests
34
+ run : docker compose --profile tests run playwright
35
+ - uses : actions/upload-artifact@v4
36
+ if : ${{ !cancelled() }}
37
+ with :
38
+ name : playwright-report-docker-org
39
+ path : test-results-docker-org/
40
+ retention-days : 30
41
+
42
+ test-api-ent :
43
+ timeout-minutes : 15
44
+ runs-on : ubuntu-latest
45
+ steps :
46
+ - name : Run Playwright tests
47
+ run : docker compose -f docker-compose.yml -f docker-compose.ent.override.yml --profile tests run playwright
48
+ - uses : actions/upload-artifact@v4
49
+ if : ${{ !cancelled() }}
50
+ with :
51
+ name : playwright-report-docker-ent
52
+ path : test-results-docker-ent/
53
+ retention-days : 30
Original file line number Diff line number Diff line change @@ -29,4 +29,6 @@ test.http
29
29
/test-results-docker /
30
30
/playwright-report /
31
31
/blob-report /
32
- /playwright /.cache /
32
+ /playwright /.cache /
33
+ test-results-docker-ent /
34
+ test-results-docker-org /
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ services:
11
11
- VUE_APP_GITHUB_ENT=octodemo
12
12
13
13
playwright :
14
- command : npx playwright test --output test-results-docker --grep @ent
14
+ command : npx playwright test --output test-results-docker-ent --grep @ent
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ services:
33
33
volumes :
34
34
- .:/workspace
35
35
working_dir : /workspace
36
- command : npx playwright test --output test-results-docker --grep @org
36
+ command : npx playwright test --output test-results-docker-org --grep @org
37
37
ipc : host
38
38
profiles : [tests]
39
39
depends_on :
You can’t perform that action at this time.
0 commit comments