Add multi wallet support for importDescriptors
#35
Workflow file for this run
This file contains 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: Unit tests | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 7, 8, 10, 12, 14, 16, 18 ] | |
name: Node ${{ matrix.node }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install docker-compose | |
uses: KengoTODA/actions-setup-docker-compose@main | |
with: | |
version: '2.6.1' | |
- name: Start containers | |
run: docker-compose up -d --build --wait | |
- name: Install dependencies | |
run: yarn | |
- name: Run tests | |
run: yarn test | |
- name: Stop containers | |
if: always() | |
run: docker-compose down |