Skip to content

fix(windows): resolve real claude.exe so SDK skips broken fallback #6

fix(windows): resolve real claude.exe so SDK skips broken fallback

fix(windows): resolve real claude.exe so SDK skips broken fallback #6

Workflow file for this run

name: ci
on:
push:
branches:
- main
- "feat/**"
- "fix/**"
- "docs/**"
- "chore/**"
pull_request:
jobs:
test:
name: test (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint (tsc --noEmit)
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build