track @playwright/cli in cli-version-checker#31200
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Track @playwright/cli in cli-version-checker
track May 9, 2026
@playwright/cli in cli-version-checker
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the cli-version-checker workflow spec to include @playwright/cli so the daily version-monitoring run can detect and report new Playwright CLI releases alongside the other tracked CLIs.
Changes:
- Added Playwright CLI to the workflow’s monitored tools list and top-level description.
- Documented version source (npm), repository/package links, and release-notes lookup guidance for Playwright CLI.
- Extended the install/help-discovery and guidelines sections to include Playwright CLI (
npm install -g @playwright/cli@<version>andplaywright-cli --help).
Show a summary per file
| File | Description |
|---|---|
.github/workflows/cli-version-checker.md |
Extends the CLI version checker workflow instructions to track @playwright/cli (sources, research, installation, and discovery). |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
✨ Enhancement
What does this improve? The
cli-version-checkerworkflow now monitors@playwright/clialongside the existing suite of tracked CLIs, so new versions of the package surface automatically via the workflow's daily issue reports.Why is this valuable?
@playwright/cli(DefaultPlaywrightCLIVersion) is a first-class supported tool in gh-aw workflows (CLI mode for Playwright), but had no automated version tracking unlike every other bundled CLI.Implementation approach:
.github/workflows/cli-version-checker.md— added@playwright/clithroughout the workflow prompt:npm view @playwright/cli version, repo atgithub.com/microsoft/playwright-clinpm install -g @playwright/cli@<version>+playwright-cli --helpdiscoveryhttps://github.com/microsoft/playwright-cli/releasesNo Go changes needed —
DefaultPlaywrightCLIVersionalready exists inpkg/constants/version_constants.go.