카카오 로그인,로그아웃 기능 구현 및 홈 스택페이지 구현 #28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| - name: 🔍 TypeScript Check | |
| run: npx tsc --noEmit |