From e2f26c424c66b4058d19d4f1e8947d3ad4edb9ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rge=20N=C3=A6ss?= Date: Sat, 17 Feb 2024 00:28:57 +0100 Subject: [PATCH] fix(ci): run e2e-pte tests in the correct folder --- .github/workflows/e2e-pte.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-pte.yml b/.github/workflows/e2e-pte.yml index e906a44480f..917afc0fa11 100644 --- a/.github/workflows/e2e-pte.yml +++ b/.github/workflows/e2e-pte.yml @@ -63,4 +63,4 @@ jobs: run: npx playwright install --with-deps - name: Run end-to-end tests - run: npx jest --config=packages/@sanity/portable-text-editor/e2e-tests/e2e.config.cjs --silent --shard=${{ matrix.shardIndex}}/${{ matrix.shardTotal }} + run: cd packages/@sanity/portable-text-editor && npx jest --config=e2e-tests/e2e.config.cjs --silent --shard=${{ matrix.shardIndex}}/${{ matrix.shardTotal }}