Skip to content

fix: bn to number division (#70) #355

fix: bn to number division (#70)

fix: bn to number division (#70) #355

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [16]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Install, build and test
timeout-minutes: 5
run: |
pnpm install
pnpm build
pnpm test
env:
CI: true