Skip to content

Commit e77bd9d

Browse files
authored
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
1 parent ce264e0 commit e77bd9d

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
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Install Playwright dependencies
7575
run: npx playwright-webkit install-deps
76-
if: "matrix.NPM_SCRIPT == 'test:browser'"
76+
if: "matrix.NPM_SCRIPT == 'test:browser' && contains(matrix.BROWSERS, 'WebkitHeadless')"
7777

7878
- name: Run tests
7979
env:

0 commit comments

Comments
 (0)