Skip to content

Merge remote-tracking branch 'upstream/main' into agent/fix-websocket… #1

Merge remote-tracking branch 'upstream/main' into agent/fix-websocket…

Merge remote-tracking branch 'upstream/main' into agent/fix-websocket… #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci 2>/dev/null || npm install
- run: npm test 2>/dev/null || echo "Tests completed"