백그라운드에서 푸시 알림 클릭 시 딥링크 이동이 되지 않는 이슈 수정 #204
Workflow file for this run
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: 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 |