Skip to content

⬆️ Bump the minor-and-patch group with 8 updates #186

⬆️ Bump the minor-and-patch group with 8 updates

⬆️ Bump the minor-and-patch group with 8 updates #186

Workflow file for this run

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