Skip to content

test(vscode): add e2e test suite #10090

test(vscode): add e2e test suite

test(vscode): add e2e test suite #10090

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: npm run test
- run: xvfb-run -a npm run test:vscode
if: runner.os == 'Linux'
- run: npm run test:vscode
if: runner.os != 'Linux'