docs: update README to reflect current architecture #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |