Add labels in a more principled way. #247
Workflow file for this run
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: Lint and Unit Test | |
'on': | |
- pull_request | |
jobs: | |
lint_and_unit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js, install deps | |
uses: ./.github/actions/setup | |
- name: Run jest coverage | |
run: yarn test --coverage | |
- name: Run flow | |
run: yarn flow |