From 6bed906448960e314008ec44967d3ef0ae444e92 Mon Sep 17 00:00:00 2001 From: Alex Arvanitidis Date: Thu, 17 Oct 2024 10:31:17 +0300 Subject: [PATCH] add secrets to github action --- .github/workflows/playwright.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 3eb1314..6f56a05 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -19,6 +19,9 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npx playwright test + env: + TEST_USER_USERNAME: ${{ secrets.TEST_USER_USERNAME }} + TEST_USER_PASSWORD: ${{ secrets.TEST_USER_PASSWORD }} - uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: