Fix: Adjust buildRegisterNode Parameters and Resolve Restricted Offers Issue with Multisig Wallets #1639
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: CI | |
on: | |
pull_request: | |
branches: [c4t, dev, suite, suite-c4t] | |
env: | |
CI: true | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install | |
- run: yarn format-check | |
- name: jest-run | |
run: yarn test |