Skip to content

Commit 212b6a4

Browse files
committed
Build: Only install Playwright dependencies when needed
PR gh-5190 added support for running tests on Playwright WebKit in CI. For efficiency reasons, Playwright dependencies are only installed for the `test:browser` npm script. However, that same script is also used for Firefox ESR testing. This change makes Playwright dependencies installed only for cases where `WebKitHeadless` exists on the list of tested browsers. Closes gh-5204 Ref gh-5190 (cherry picked from commit e77bd9d)
1 parent 98dd622 commit 212b6a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/node.js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Install Playwright dependencies
7171
run: npx playwright-webkit install-deps
72-
if: "matrix.NPM_SCRIPT == 'test:browser'"
72+
if: "matrix.NPM_SCRIPT == 'test:browser' && contains(matrix.BROWSERS, 'WebkitHeadless')"
7373

7474
- name: Run tests
7575
env:

0 commit comments

Comments
 (0)