Skip to content

docs: update README to reflect current architecture #17

docs: update README to reflect current architecture

docs: update README to reflect current architecture #17

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install NASM
if: runner.os == 'Linux'
run: sudo apt-get install -y nasm
- name: Install dependencies (skip native build)
run: npm install --ignore-scripts
- name: Build native addon
run: npm run build
continue-on-error: ${{ runner.os != 'Linux' }}
- name: Run tests
run: npm test