Skip to content

Update @tamagui/config 1.99.1 → 1.101.3 (minor) #89

Update @tamagui/config 1.99.1 → 1.101.3 (minor)

Update @tamagui/config 1.99.1 → 1.101.3 (minor) #89

Workflow file for this run

name: Lint TS (eslint, prettier)
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint:
name: Lint TS (eslint, prettier)
runs-on: ubuntu-latest
steps:
- name: 📦 Checkout project repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📦 Setup Node + YARN + install deps
uses: ./.github/actions/setup-node
- name: 🏃‍♂️ Run ESLint PR
if: github.event_name == 'pull_request'
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
eslint_flags: '. --ext .js,.jsx,.ts,.tsx'
- name: 🏃‍♂️ Run ESLint PR
if: github.event_name != 'pull_request'
run: yarn lint