36 minutes ago · 8 min read1515 words · Tech · hide · 0 comments

Developers need the option to test out their feature branch before merging it into main. In the last section, we set up a GitLab CI/CD Pipeline in our bun-create-playwright project to check every GitLab Merge Request. Now, we will be giving developers option to create a new pipeline where they can choose:Which feature branch to test against.Which test suite to execute (LoginPage tests? Secure Area? Or all of them?)Which Playwright browser to use: Chromium, Firefox, WebKit, or all.All these features can be set up using our .gitlab-ci.yaml file!Go to to bun-create-playwright, view the Pipelines section, and select the New Pipeline button. Run a New Bun-Create-Playwright PipelineIf you go to the Run new pipeline page at https://gitlab.com/tjmaher/bun-create-playwright/-/pipelines/new you can see the following default values I've set:https://gitlab.com/tjmaher/bun-create-playwright/-/pipelines/newBy default: Branch name is "main", TEST_SUITE is "all", BROWSER is "all". ... But all these…

No comments yet. Log in to reply on the Fediverse. Comments will appear here.