This repository was archived by the owner on May 15, 2026. It is now read-only.
Feat roo import #1
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: E2E Tests (Mocked) | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, reopened, ready_for_review, synchronize] | |
| branches: [main] | |
| paths: | |
| - "src/**" | |
| - "webview-ui/**" | |
| - "apps/vscode-e2e/**" | |
| - "packages/core/**" | |
| - "package.json" | |
| - "pnpm-lock.yaml" | |
| - "turbo.json" | |
| - ".github/actions/setup-node-pnpm/**" | |
| jobs: | |
| e2e-mock: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js and pnpm | |
| uses: ./.github/actions/setup-node-pnpm | |
| - name: Install xvfb | |
| run: sudo apt-get install -y xvfb | |
| - name: Run mocked E2E tests | |
| run: xvfb-run -a pnpm --filter @roo-code/vscode-e2e test:ci:mock |