From 7c8b501c40371e63531826ac663e3869f512ef60 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 21 Sep 2023 17:13:19 -0700 Subject: [PATCH] Run npx install playwright in src-ui dir (#4239) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15fc2279a..4f37af441 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,7 +195,7 @@ jobs: run: cd src-ui && npm ci - name: Install Playwright - run: npx playwright install --with-deps + run: cd src-ui && npx playwright install --with-deps - name: Linting checks run: cd src-ui && npm run lint