Add [End to end Test] New end to end tests for authentication with Firebase Emulator Suite #4
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
on: [push, pull_request] | |
jobs: | |
emulator_test: | |
name: Run all tests using the Firebase Emulator suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12' | |
- name: Install Firebase Emulator Suite | |
run: npm install -g firebase-tools | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: firebase emulators:exec 'gradle connectedCheck' # need to specify that it is for the e2e test... | |