Skip to content

fix(node-pty): patch winpty.gyp paths and harden POSIX spawn errors #1775

fix(node-pty): patch winpty.gyp paths and harden POSIX spawn errors

fix(node-pty): patch winpty.gyp paths and harden POSIX spawn errors #1775

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, rc, '*-RC']
push:
branches: [main, rc]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run build:prompts
- run: npx prettier --check .
- run: npx eslint src/
- run: npm run lint # TypeScript type checking
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run build:prompts
- run: npm run test