TW-1364 Implement returning different ads data depending on web exten… #114
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 and lint 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: Check ESLint | |
run: yarn lint |