Skip to content

feat(cloud): migrate to CoreClaw API v2 — full 37-op coverage + apify… #69

feat(cloud): migrate to CoreClaw API v2 — full 37-op coverage + apify…

feat(cloud): migrate to CoreClaw API v2 — full 37-op coverage + apify… #69

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
node-version: [20.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: npm ci
- name: Test
run: npm test