fix: share providers between WalletAccounts, rm the provider in the owner account #345
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: build | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| steps: | |
| - uses: tetherto/oss-actions/node-base@v1 | |
| - run: npm run lint | |
| test: | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| platform: linux | |
| runs-on: ${{ matrix.os }} | |
| name: Test / ${{ matrix.platform }} | |
| steps: | |
| - uses: tetherto/oss-actions/node-base@v1 | |
| - run: npm test | |
| - run: npm run test:integration |