Skip to content

Commit

Permalink
feat: Support witness coinselect (#2)
Browse files Browse the repository at this point in the history
* feat: witness coin select

* chore: type

* chore: fix type

* fix: params filter

* fix: Add baseFee

* fix: unit test

* feat: Add third-party folder

* feat: Add publish yml

* fix: lint

* chore: update node version

* chore: update node version

* chore: coverage
  • Loading branch information
originalix authored Dec 5, 2024
1 parent 91e8db2 commit 4a5219f
Show file tree
Hide file tree
Showing 227 changed files with 10,741 additions and 1,253 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 'lts/*']
node-version: [20, 'lts/*']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 'lts/*']
node-version: [20, 'lts/*']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 'lts/*']
node-version: [20, 'lts/*']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/package-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: NPM Package Publish

on:
workflow_dispatch:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm ci

- name: Publish to NPM
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access public
Loading

0 comments on commit 4a5219f

Please sign in to comment.