feature: add support for installing only specified browser dependencies
See original GitHub issueIt would be useful if we could do something like:
- uses: microsoft/playwright-github-action@v1
with:
browsers: chromium, webkit
or
- uses: microsoft/playwright-github-action@v1
with:
browsers: chromium
Since the apt calls are already separate only a call to getInput and some parsing would be required.
(I’m open to collaborate for that feature)
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Adding package dependencies to your app - Apple Developer
Xcode supports both private and publicly available packages. Add a package dependency. To add a package dependency to your Xcode project, select File...
Read more >Available features on demand | Microsoft Learn
This Feature on Demand enables support for IrDA devices. Requires special IrDA hardware. Recommendation: Don't install. This feature has been ...
Read more >Advanced package manager features for npm, Yarn, and pnpm
This table covers dependency management commands to install or update all dependencies specified in package.json , or multiple dependencies by ...
Read more >Workspace npm dependencies - Angular
Both npm and yarn install the packages that are identified in a package.json file ... Many browsers lack native support for some features...
Read more >rollup.js
You can also install it locally, see Installing Rollup locally. ... file to simplify command line usage and enable advanced Rollup functionality.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
A use case would be e.g. when you need only webkit and Chrome but not firefox. You can save the time and bandwidth to only install their dependencies in the end. Could save on some environments around 20 seconds.
Its now possible via the CLI: https://playwright.dev/docs/cli#install-system-dependencies
for example:
npx playwright install-deps chromium