Skip to content

Rewrite encode/decode logic to use BigInt and bitwise operators. #61

Rewrite encode/decode logic to use BigInt and bitwise operators.

Rewrite encode/decode logic to use BigInt and bitwise operators. #61

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.JS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Code Coverage on Node LTS version
if: ${{ matrix.node-version == '14.x' }}
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true