Skip to content

Commit

Permalink
Merge pull request #92 from nautls/fix-unconf-tx-query
Browse files Browse the repository at this point in the history
Include unconfirmed inputs' tokens when being spent
  • Loading branch information
arobsn authored Sep 24, 2024
2 parents 71b7ea4 + 2129bf3 commit f664e3c
Show file tree
Hide file tree
Showing 6 changed files with 747 additions and 5,935 deletions.
40 changes: 19 additions & 21 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,37 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [18, 20]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build

lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Lint code
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- run: npm ci
- run: npm run lint
- uses: actions/checkout@v3
- name: Lint code
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
- run: npm ci
- run: npm run lint
Loading

0 comments on commit f664e3c

Please sign in to comment.