Skip to content

Commit 747b7f2

Browse files
Nir.TalNir.Tal
authored andcommitted
fix: renovate
1 parent 3d51138 commit 747b7f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
5858
run: poetry install --no-interaction --no-root
5959
- name: Install Playwright Browsers
60-
run: npx playwright install --with-deps
60+
run: |
61+
PLAYWRIGHT_VERSION=$(grep -E '^playwright = "[^"]*"' pyproject.toml | sed -E 's/playwright = "([^"]*)".*$/\1/')
62+
npx playwright@$PLAYWRIGHT_VERSION install --with-deps
6163
- name: Run Tests
6264
run: |
6365
source .venv/bin/activate

0 commit comments

Comments
 (0)