Fix Jev response fallbacks and redundant completion turn #1005
Workflow file for this run
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
| name: WebMCP E2E | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/webmcp.yml" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "src/chrome/**" | |
| - "test/pdf-mime-handler-e2e.mjs" | |
| - "test/fixtures/webmcp-*.html" | |
| - "test/webmcp-e2e.mjs" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/webmcp.yml" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "src/chrome/**" | |
| - "test/pdf-mime-handler-e2e.mjs" | |
| - "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 | |
| - name: Install dependencies | |
| id: dependencies | |
| run: npm ci | |
| - name: Report Chrome version | |
| id: chrome_version | |
| run: google-chrome --version | |
| - name: Run PDF MIME handler regression | |
| env: | |
| WEBMCP_CHROME_PATH: /usr/bin/google-chrome | |
| run: npm run test:pdf-mime-handler | |
| - name: Run real Chrome WebMCP smoke test | |
| if: ${{ !cancelled() && steps.dependencies.outcome == 'success' && steps.chrome_version.outcome == 'success' }} | |
| env: | |
| WEBMCP_CHROME_PATH: /usr/bin/google-chrome | |
| run: npm run test:webmcp |