Skip to content

Better syntax for big numbers #324

Better syntax for big numbers

Better syntax for big numbers #324

Workflow file for this run

name: CI Build & Tests
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x, 21.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci --ignore-scripts
npm run build --if-present
npm run test:coverage
env:
CI: true
- name: codecov report
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}