Skip to content

Add new functions 'lsolve' and 'rationalize' to README #60

Add new functions 'lsolve' and 'rationalize' to README

Add new functions 'lsolve' and 'rationalize' to README #60

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