Skip to content

Commit 73439ac

Browse files
committed
fix(workflow): update Playwright test command and format URLs for service outputs
1 parent c511315 commit 73439ac

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/test-e2e.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@ jobs:
7272
run: npm ci
7373
working-directory: tests
7474

75-
- name: Install Playwright Browsers
76-
run: npx playwright install --with-deps
77-
working-directory: tests
75+
# - name: Install Playwright Browsers
76+
# run: npx playwright install --with-deps
77+
# working-directory: tests
7878

7979
- name: Run Playwright tests
80-
run: npx playwright test
80+
run: npx playwright test --config=playwright.service.config.ts --workers=20
8181
working-directory: tests
8282
env:
8383
PLAYWRIGHT_SERVICE_URL: ${{ secrets.PLAYWRIGHT_SERVICE_URL }}
84-
STORE_ADMIN_URL: ${{ steps.kubectl_get_service.outputs.STORE_ADMIN_IP }}
85-
STORE_FRONT_URL: ${{ steps.kubectl_get_service.outputs.STORE_FRONT_IP }}
84+
STORE_ADMIN_URL: "http://${{ steps.kubectl_get_service.outputs.STORE_ADMIN_IP }}"
85+
STORE_FRONT_URL: "http://${{ steps.kubectl_get_service.outputs.STORE_FRONT_IP }}"
8686
CI: true
8787

8888
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)