Fix: Changed token=>tokenString in the AccessToken, for firebase-auth.md #246
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Dart | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
- uses: subosito/flutter-action@v2.7.1 | |
with: | |
flutter-version: '3.19.2' | |
- name: Install facebook_auth dependencies | |
run: cd facebook_auth && flutter pub get | |
- name: Run facebook_auth tests | |
run: cd facebook_auth && flutter test --platform chrome | |
- name: Install facebook_auth_platform_interface dependencies | |
run: cd facebook_auth_platform_interface && flutter pub get | |
- name: Run facebook_auth_platform_interface tests | |
run: cd facebook_auth_platform_interface && flutter test --coverage | |
- name: Install facebook_auth_web dependencies | |
run: cd facebook_auth_web && flutter pub get | |
- name: Run facebook_auth_platform_interface tests | |
run: cd facebook_auth_web && flutter test --platform chrome | |
- name: Upload coverage to Codecov | |
run: curl -s https://codecov.io/bash | bash |