Add rewrites rule to firebase.json
#42
Workflow file for this run
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: Run Tests | |
on: [push, workflow_dispatch] | |
jobs: | |
drive: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Write firebase_options.dart | |
run: echo '{{ secrets.FIREBASE_OPTIONS }}' > lib/firebase_options.dart | |
- name: Write GoogleService-info.plist | |
run: echo '{{ secrets.GOOGLE_SERVICE_INFO_PLIST }}' > ios/Runner/GoogleService-Info.plist | |
- name: Write google-services.json | |
run: echo '{{ secrets.GOOGLE_SERVICES_JSON }}' > android/app/google-services.json | |
- uses: subosito/[email protected] | |
- name: Run Flutter tests | |
run: flutter test |