Skip to content

Update README to include 'bignumber' function #61

Update README to include 'bignumber' function

Update README to include 'bignumber' function #61

name: Security Audit
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
schedule:
- cron: '0 6 * * 1'
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Run npm audit
run: npm audit
continue-on-error: true