Skip to content

chore(app): bump react and @types/react in /app #11

chore(app): bump react and @types/react in /app

chore(app): bump react and @types/react in /app #11

Workflow file for this run

name: Mobile App CI
on:
push:
branches: [main, develop]
paths:
- "app/**"
- ".github/workflows/mobile-ci.yml"
pull_request:
branches: [main, develop]
paths:
- "app/**"
- ".github/workflows/mobile-ci.yml"
defaults:
run:
working-directory: app
jobs:
type-check:
name: TypeScript Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: app/package-lock.json
- name: Install dependencies
run: npm ci
- name: TypeScript type check
run: npx tsc --noEmit