Skip to content

fix: correct amount calculation for self-transfer transactions in BTC… #71

fix: correct amount calculation for self-transfer transactions in BTC…

fix: correct amount calculation for self-transfer transactions in BTC… #71

Workflow file for this run

name: ESLint
on:
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
push:
branches:
- dev
- master
workflow_dispatch:
# @see https://typicode.github.io/husky/how-to.html#ci-server-and-docker
env:
HUSKY: 0
jobs:
check:
name: Check source code with ESLint and fix problems
runs-on: ubuntu-latest
steps:
- name: Checkout repository 🛎️
uses: actions/checkout@v4
- name: Setup Node.js 🍀
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install dependencies 📦
run: npm ci
- name: Run ESLint 🛠️
run: |
npm run lint