Skip to content

Merge pull request #7 from Team-DailySnap/feat/2-fsd-setup #14

Merge pull request #7 from Team-DailySnap/feat/2-fsd-setup

Merge pull request #7 from Team-DailySnap/feat/2-fsd-setup #14

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
cache: "npm"
- 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