Skip to content

add zeroFee flag in wallet.sendOffchain method #41

add zeroFee flag in wallet.sendOffchain method

add zeroFee flag in wallet.sendOffchain method #41

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Check code formatting
run: pnpm format:check
- name: Run linter
run: pnpm lint
- name: Run unit tests
run: pnpm test:unit
- name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
with:
use_ark: true
use_liquid: false
use_ln: false
- name: Run setup script
run: pnpm test:setup
- name: Run integration tests
run: pnpm test:integration
- name: Check TypeScript compilation
run: pnpm build