Feat/navigation bar #32
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 | |
| # TypeScript 검사 비활성화. TODO: 추후 활성화 | |
| # - name: 🔍 TypeScript Check | |
| # run: npx tsc --noEmit |