Update Firebase version #122
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: Build and Test Sources | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| test: | |
| name: "Build Sources" | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Install Java17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| - name: Install xcpretty | |
| run: bundle install | |
| - name: Setup Firebase Emulator | |
| working-directory: ./firebase | |
| run: ./emulator_setup.sh & | |
| env: | |
| FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
| - name: Wait firebase_emulator_setup | |
| working-directory: ./firebase | |
| run: ./wait_firebase_emulator_setup.sh | |
| - name: Build and Test | |
| run: | | |
| set -o pipefail && \ | |
| swift build && \ | |
| swift test | |
| - name: Kill firebase_emulator process | |
| run: kill `cat /tmp/firebase_emulator_pid.pid` &>/dev/null |