-
-
Notifications
You must be signed in to change notification settings - Fork 72
51 lines (43 loc) · 1.04 KB
/
Copy pathwebmcp.yml
File metadata and controls
51 lines (43 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: WebMCP E2E
on:
pull_request:
paths:
- ".github/workflows/webmcp.yml"
- "package.json"
- "package-lock.json"
- "src/chrome/**"
- "test/fixtures/webmcp-*.html"
- "test/webmcp-e2e.mjs"
push:
branches:
- main
paths:
- ".github/workflows/webmcp.yml"
- "package.json"
- "package-lock.json"
- "src/chrome/**"
- "test/fixtures/webmcp-*.html"
- "test/webmcp-e2e.mjs"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: webmcp-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
smoke:
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Report Chrome version
run: google-chrome --version
- name: Run real Chrome WebMCP smoke test
env:
WEBMCP_CHROME_PATH: /usr/bin/google-chrome
run: npm run test:webmcp