From b1478d5671886a9d716bfa1d3d39ee78922720df Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Mon, 8 Sep 2025 10:25:45 +0200 Subject: [PATCH] ci: make playwright run seperately --- .github/workflows/check.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a47aaf01a6..ac2ab8e06b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -26,6 +26,20 @@ jobs: - name: Validate code snippets run: pnpm validate:snippets + playwright: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: the-guild-org/shared-config/setup@main + name: setup env + with: + packageManager: pnpm + workingDirectory: ./ + + - name: Install Dependencies + run: pnpm i + # per the docs: "caching browser binaries is not recommended, # since the amount of time it takes to restore the cache is # comparable to the time it takes to download the binaries"