Skip to content

Fix Immature balance bug #1332

Fix Immature balance bug

Fix Immature balance bug #1332

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
paths-ignore:
- "*.md"
- LICENSE
- "*.yaml"
pull_request:
branches:
- master
paths-ignore:
- "*.md"
- LICENSE
- "*.yaml"
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install Node.js dependencies
run: npm ci
- name: Run ESlint
run: npm run lint
- name: Run prettier
run: npx prettier -l .
- name: Run tests
run: npm test