From dbe18dd1007c7bbad9d7e775ebd70311431e99f8 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 18 Aug 2023 09:48:41 +0200 Subject: [PATCH] chore: configure login env. vars. in e2e test workflow (#1221) --- .github/workflows/playwright.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 0f2dd77e..7b60bd99 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -18,6 +18,9 @@ jobs: - name: Install Playwright Browsers run: yarn playwright install --with-deps - name: Run Playwright tests + env: + LOGIN_EMAIL: ${{ secrets.LOGIN_EMAIL }} + LOGIN_PASSWORD: ${{ secrets.LOGIN_PASSWORD }} run: yarn playwright test - uses: actions/upload-artifact@v3 if: always()