Skip to content

[Refactor]: Stagehand MCP becoming the Browserbase MCP #22

[Refactor]: Stagehand MCP becoming the Browserbase MCP

[Refactor]: Stagehand MCP becoming the Browserbase MCP #22

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm run build
- name: Run ESLint
run: pnpm run lint
- name: Ensure no changes
run: git diff --exit-code