From 6d9ca1326d1f8ecf00b75c80198ae45f5d8917b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csete=20Bal=C3=A1zs?= Date: Tue, 23 Jul 2024 09:14:32 +0200 Subject: [PATCH] workflow --- .github/workflows/playwright.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 140acb0ee6..c38a854aa6 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -15,10 +15,16 @@ jobs: node-version: lts/* - name: Install dependencies run: npm ci + env: + WAAS_VIEM_URL: ${{ secrets.WAAS_VIEM_URL }} + WAAS_WEB_URL: ${{ secrets.WAAS_WEB_URL }} - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Build project run: npm run build + env: + NEXT_PUBLIC_E2E_WALLET_MNEMONIC: ${{ secrets.NEXT_PUBLIC_E2E_WALLET_MNEMONIC }} + NEXT_PUBLIC_MOCK_CONNECTOR: true - name: Run Playwright tests run: npm run test - uses: actions/upload-artifact@v4