TW-1591: Disable Persona ads #2852
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: | |
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 | |
- name: Find deadcode | |
run: yarn find-deadcode | |
- name: Check ESLint | |
run: yarn lint | |
- name: Run Unit tests | |
run: yarn test | |