Skip to content

Updated documentation, fixed buffer unwrapping bug #12

Updated documentation, fixed buffer unwrapping bug

Updated documentation, fixed buffer unwrapping bug #12

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
# Runs all steps on the VM
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-10.15, windows-2019]
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout Code Repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test