⬆️ Bump the minor-and-patch group with 7 updates (#411) #193
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 | |
# Run lint workflow on push / pr to main or release branch | |
on: | |
push: | |
branches: | |
- main | |
- "release-v*" | |
pull_request: | |
branches: | |
- main | |
- "release-v*" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Check TypeScript errors with ESLint | |
run: yarn eslint --ext .ts,.tsx src/ | |
- name: Check TypeScript errors | |
run: yarn tsc --noEmit |