Skip to content

Added ring buffer. #209

Added ring buffer.

Added ring buffer. #209

Workflow file for this run

name: Node.js CI
on:
push:
branches: ['*']
pull_request:
branches: [master]
permissions:
contents: read
jobs:
tests:
name: Node.js ${{matrix.node-version}} on ubuntu-latest
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24, 26]
steps:
- uses: actions/checkout@v7
with:
submodules: true
- uses: actions/setup-node@v7
with:
node-version: ${{matrix.node-version}}
- run: |
npm ci
npm run prepareDist --if-present
npm run build --if-present
npm test