Add Payouts List and Balances components (#110) #283
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: build | |
on: | |
push: | |
branches: [master, beta] | |
pull_request: | |
branches: [master, beta] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- run: yarn install --frozen-lockfile | |
- run: yarn run lint | |
- run: yarn run typecheck | |
- run: yarn run test:unit --passWithNoTests |