Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Lysak committed Dec 11, 2024
1 parent 5d92aa5 commit 2743dc3
Showing 1 changed file with 38 additions and 7 deletions.
45 changes: 38 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Upload stateless
uses: actions/upload-artifact@v4
with:
name: stateless-build
name: stateless-build-${{ github.run_id }}-${{ github.job }}
path: stateless-build.tar

build-stateful:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Upload stateful
uses: actions/upload-artifact@v4
with:
name: stateful-build
name: stateful-build-${{ github.run_id }}-${{ github.job }}
path: stateful-build.tar

stateless:
Expand All @@ -97,7 +97,38 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
shard:
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
]
steps:
- uses: actions/checkout@v3

Expand All @@ -118,7 +149,7 @@ jobs:
id: download
uses: actions/download-artifact@v4
with:
name: stateless-build
name: stateless-build-${{ github.run_id }}-${{ github.job }}

- name: Untar files
run: tar -xvf stateless-build.tar
Expand All @@ -133,7 +164,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: stateless-report
name: stateless-report-${{ github.run_id }}-${{ github.job }}
path: playwright-report/
retention-days: 30

Expand Down Expand Up @@ -167,7 +198,7 @@ jobs:
id: download
uses: actions/download-artifact@v4
with:
name: stateful-build
name: stateful-build-${{ github.run_id }}-${{ github.job }}

- name: Untar files
run: tar -xvf stateful-build.tar
Expand All @@ -187,6 +218,6 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: stateful-report
name: stateful-report-${{ github.run_id }}-${{ github.job }}
path: playwright-report/
retention-days: 30

0 comments on commit 2743dc3

Please sign in to comment.