🚀 Feature Request
Add --no-gha option to create-playwright to be able to skip the question of creating the GitHub Actions workflow, instead of requiring interactive input from the user
Already opened a PR for this, but it was closed because there's no companion issue yet:
Example
$ pnpm create playwright
Getting started with writing end-to-end tests with Playwright:
Initializing project in '.'
✔ Do you want to use TypeScript or JavaScript? · TypeScript
✔ Where to put your end-to-end tests? · tests
✔ Add a GitHub Actions workflow? (y/N) · false
✖ Install Playwright browsers (can be done manually via 'pnpm exec playwright install')? (Y/n) · true
$ pnpm create playwright --no-gha
Getting started with writing end-to-end tests with Playwright:
Initializing project in '.'
✔ Do you want to use TypeScript or JavaScript? · TypeScript
✔ Where to put your end-to-end tests? · tests
✖ Install Playwright browsers (can be done manually via 'pnpm exec playwright install')? (Y/n) · true
Motivation
Be able to run the script in a more automated, zero-config way, instead of having to input details interactively as a user.
🚀 Feature Request
Add
--no-ghaoption tocreate-playwrightto be able to skip the question of creating the GitHub Actions workflow, instead of requiring interactive input from the userAlready opened a PR for this, but it was closed because there's no companion issue yet:
Example
Motivation
Be able to run the script in a more automated, zero-config way, instead of having to input details interactively as a user.