From 430c603ee6eaaa07310230f73573a215e12e9941 Mon Sep 17 00:00:00 2001 From: Kstala Date: Mon, 13 Jan 2025 20:50:29 +0100 Subject: [PATCH] fix(e2e): base e2e url for accessibility check --- .github/workflows/accessibility-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/accessibility-check.yml b/.github/workflows/accessibility-check.yml index 28c1f5c24..1dd57e5fb 100644 --- a/.github/workflows/accessibility-check.yml +++ b/.github/workflows/accessibility-check.yml @@ -6,7 +6,7 @@ on: schedule: - cron: "30 09 * * *" jobs: - run-stackblitz-templates-tests: + run-accessibility-check: runs-on: macos-14 env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} @@ -37,4 +37,4 @@ jobs: - name: Run tests run: | cd apps/e2e-tests - npx playwright test --grep @accessibility --project=chromium + BASE_E2E_URL=https://frontends-demo.vercel.app/ npx playwright test --grep @accessibility --project=chromium