Feat/signup email auth and onboarding refactoring: 회원가입 이메일 인증 과정 추가, 온보딩 데이터 저장 방식 변경 #161
This file contains 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: Expo PR Branch Preview | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
preview: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: 🏗 Setup repo | |
uses: actions/checkout@v3 | |
- name: 🏗 Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: 🏗 Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
packager: npm | |
- name: 📦 Install dependencies | |
run: npm install | |
- name: 🚀 Create preview with environment variables to development build | |
run: npm run push-to-dev-with-branch ${{ github.head_ref }} |