Skip to content

Add missing check to burn estimate function and throw an error instea… #145

Add missing check to burn estimate function and throw an error instea…

Add missing check to burn estimate function and throw an error instea… #145

Workflow file for this run

name: Test on push
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm run test