Skip to content

초대장 생성 후 홈으로 갈 때 바텀 시트 펼쳐져있는 이슈 수정 #201

초대장 생성 후 홈으로 갈 때 바텀 시트 펼쳐져있는 이슈 수정

초대장 생성 후 홈으로 갈 때 바텀 시트 펼쳐져있는 이슈 수정 #201

Workflow file for this run

name: CI for Test
on:
workflow_dispatch:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out Repository
uses: actions/[email protected]
- name: Create Google Services JSON File
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: |
echo "$GOOGLE_SERVICES_JSON" > google-services.json.b64
base64 -d -i google-services.json.b64 > ./app/google-services.json
- name: Create local.properties file
run: touch local.properties
- name: Add Base URL to local.properties file
run: |
echo "TUK_BASE_URL=KEY" >> local.properties
echo "GOOGLE_CLIENT_ID=KEY" >> local.properties
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew test