Skip to content

Update @tamagui/babel-plugin 1.99.1 → 1.101.5 (minor) #95

Update @tamagui/babel-plugin 1.99.1 → 1.101.5 (minor)

Update @tamagui/babel-plugin 1.99.1 → 1.101.5 (minor) #95

Workflow file for this run

name: Type Check (tsc)
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
type-check:
name: Type Check (tsc)
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: 📦 Install Reviewdog
if: github.event_name == 'pull_request'
uses: reviewdog/action-setup@v1
- name: 🏃‍♂️ Run TypeScript PR #
if: github.event_name == 'pull_request'
run: |
yarn type-check | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-on-error -tee
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 🏃‍♂️ Run TypeScript Commit
if: github.event_name != 'pull_request'
run: yarn type-check