Skip to content

Commit 5e0ac89

Browse files
authored
chore: split mcp into mcp and cli (#1346)
1 parent 9e176c4 commit 5e0ac89

File tree

11 files changed

+674
-755
lines changed

11 files changed

+674
-755
lines changed

.github/workflows/publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,27 @@ jobs:
7373
- run: npm publish
7474
working-directory: ./packages/playwright-mcp
7575

76+
publish-cli-release-npm:
77+
if: github.event_name == 'release'
78+
runs-on: ubuntu-latest
79+
permissions:
80+
contents: read
81+
id-token: write # Required for OIDC npm publishing
82+
steps:
83+
- uses: actions/checkout@v5
84+
- uses: actions/setup-node@v5
85+
with:
86+
node-version: 20
87+
registry-url: https://registry.npmjs.org/
88+
# Ensure npm 11.5.1 or later is installed (for OIDC npm publishing)
89+
- name: Update npm
90+
run: npm install -g npm@latest
91+
- run: npm ci
92+
- run: npx playwright install --with-deps
93+
- run: npm run lint
94+
- run: npm publish
95+
working-directory: ./packages/playwright-cli
96+
7697
publish-mcp-release-docker:
7798
if: github.event_name == 'release'
7899
runs-on: ubuntu-latest

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Portions Copyright (c) Microsoft Corporation.
190-
Portions Copyright 2017 Google Inc.
189+
Copyright (c) Microsoft Corporation.
191190

192191
Licensed under the Apache License, Version 2.0 (the "License");
193192
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)