feat: implement auto coin select #23
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: Run unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Run regtest setup | |
| run: cd docker && docker compose up --quiet-pull -d | |
| - name: Wait for bitcoind | |
| run: | | |
| sudo apt install wait-for-it | |
| wait-for-it -h 127.0.0.1 -p 43782 -t 60 | |
| - name: Wait for electrum server | |
| run: wait-for-it -h 127.0.0.1 -p 60001 -t 60 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Install Node.js dependencies | |
| run: npm install || npm install | |
| - name: Run Tests | |
| run: npm run test | |
| - name: Dump docker logs on failure | |
| if: failure() | |
| uses: jwalton/gh-docker-logs@v2 |