From 71abb09ce6bf5b112e00c4126c139ff3438773e0 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 21 Jan 2025 17:45:05 +0000 Subject: [PATCH] Pass around playwright files to avoid racing the shard behaviour Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/end-to-end-tests.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index bd7872ee12..ca73019e7a 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -83,8 +83,13 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v4 with: - name: webapp - path: webapp + name: build + path: | + webapp + playwright + playwright.config.ts + package.json + yarn.lock retention-days: 1 - name: Calculate runner variables @@ -129,16 +134,10 @@ jobs: - runAllTests: false project: Pinecone steps: - - uses: actions/checkout@v4 - with: - persist-credentials: false - repository: element-hq/element-web - - name: 📥 Download artifact uses: actions/download-artifact@v4 with: - name: webapp - path: webapp + name: build - uses: actions/setup-node@v4 with: