TW-1042: Remove disable state of the "Send" button on Android, when the balance of tezos token or current token is empty #2240
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: Code quality | |
on: | |
pull_request: | |
branches: | |
- master | |
- development | |
jobs: | |
code-quality: | |
name: Checks if ts, lint & unit tests works | |
runs-on: macos-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Repository setup | |
uses: ./.github/workflows/repository-setup | |
- name: Check TypeScript | |
run: yarn ts && yarn ts:e2e | |
- name: Find deadcode | |
run: yarn find-deadcode | |
- name: Check ESLint | |
run: yarn lint | |
- name: Run Unit tests | |
run: yarn test | |