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 a042a35 commit e443207Copy full SHA for e443207
.github/actions/install-playwright/action.yml
@@ -3,7 +3,7 @@ description: "Installs Playwright dependencies and caches them."
3
inputs:
4
browsers:
5
description: 'What browsers to install.'
6
- default: 'chromium webkit firefox'
+ default: 'chromium'
7
cwd:
8
description: 'The working directory to run Playwright in.'
9
default: '.'
@@ -17,8 +17,7 @@ runs:
17
shell: bash
18
working-directory: ${{ inputs.cwd }}
19
20
- # We always install all browsers
21
- name: Install Playwright dependencies
22
- run: npx playwright install chromium webkit firefox
+ run: npx playwright install chromium
23
24
0 commit comments