Skip to content

Add navigation transitions on Android #21

Add navigation transitions on Android

Add navigation transitions on Android #21

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- '*'
jobs:
checks:
runs-on: macos-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- uses: gradle/[email protected]
with:
gradle-home-cache-cleanup: true
cache-read-only: false
- name: Run Swift Lint
run: |
cd iosApp
swiftlint
cd ..
- name: Create Firebase json
run: |
echo "$FIREBASE_JSON" > androidApp/google-services.json.b64
base64 -d -i androidApp/google-services.json.b64 > androidApp/google-services.json
env:
FIREBASE_JSON: ${{ secrets.FIREBASE_JSON }}
- name: Run Checks
run: ./gradlew check
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: build-reports
path: |
**/build/reports/*