Skip to content

Use peekaboo fork binary for computer use #51

Use peekaboo fork binary for computer use

Use peekaboo fork binary for computer use #51

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
validate:
name: validate (${{ matrix.arch }})
strategy:
fail-fast: false
matrix:
include:
- arch: arm64
runner: macos-15
uname: arm64
- arch: x64
runner: macos-15-intel
uname: x86_64
runs-on: ${{ matrix.runner }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- name: Verify runner architecture
run: test "$(uname -m)" = "${{ matrix.uname }}"
- uses: actions/setup-node@v7
with:
node-version: 22.13.0
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run type-check
- run: npm test
- run: npm run build