Skip to content

Implement OSC MIDI type 'm' support for OSC Spec 1.0/1.1 compatibility #435

Implement OSC MIDI type 'm' support for OSC Spec 1.0/1.1 compatibility

Implement OSC MIDI type 'm' support for OSC Spec 1.0/1.1 compatibility #435

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
run-tests:
strategy:
matrix:
node-version: ['24', '22', '20']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Test
run: npm run test