Skip to content

Feat/navigation bar #32

Feat/navigation bar

Feat/navigation bar #32

name: DAILYSNAP-FE-PR-CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
- name: 🔧 Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.14.0
- name: 📦 Install dependencies
run: npm install
- name: 🔍 Expo Doctor Check
run: npx expo-doctor
- name: 🏗 Expo Prebuild Check
run: npx expo prebuild --no-install
- name: ✅ Lint Check
run: npm run lint
# TypeScript 검사 비활성화. TODO: 추후 활성화
# - name: 🔍 TypeScript Check
# run: npx tsc --noEmit