We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d51138 commit 747b7f2Copy full SHA for 747b7f2
.github/workflows/nightly.yml
@@ -57,7 +57,9 @@ jobs:
57
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
58
run: poetry install --no-interaction --no-root
59
- name: Install Playwright Browsers
60
- run: npx playwright install --with-deps
+ run: |
61
+ PLAYWRIGHT_VERSION=$(grep -E '^playwright = "[^"]*"' pyproject.toml | sed -E 's/playwright = "([^"]*)".*$/\1/')
62
+ npx playwright@$PLAYWRIGHT_VERSION install --with-deps
63
- name: Run Tests
64
run: |
65
source .venv/bin/activate
0 commit comments