Skip to content

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

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

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

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: [22.x, 23.x, 24.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 == '22.x' }}
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}