Chrome Debug MCP Server

name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Install dependencies run: npm ci - name: Build run: npm run build - name: Run type checks run: npx tsc --noEmit # Enable these once tests are added # - name: Run tests # run: npm test - name: Check formatting run: npx prettier --check "src/**/*.{ts,js}" - name: Upload build artifacts uses: actions/upload-artifact@v2 with: name: build-output path: build/