Skip to content

Commit 69d653c

Browse files
committed
fix: add environment variables from github environment secrets to playwright action
1 parent af00806 commit 69d653c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/playwright.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- name: Install Playwright Browsers
2020
run: npx playwright install --with-deps
2121
- name: Run Playwright tests
22+
env:
23+
BASE_URL: ${{ secrets.BASE_URL }}
24+
ADMIN_COOKIE: ${{ secrets.ADMIN_COOKIE }}
2225
run: npx playwright test
2326
- uses: actions/upload-artifact@v4
2427
if: always()

0 commit comments

Comments
 (0)