-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix/auth-firestore' of https://github.com/EnsembleUI/en…
…semble into fix/auth-firestore
- Loading branch information
Showing
96 changed files
with
6,098 additions
and
1,051 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Test Commands in Starter | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test-modules: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
defaults: | ||
run: | ||
working-directory: starter | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Flutter SDK | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run hasCamera command | ||
run: npm run hasCamera platform="ios,android" cameraDescription="Hello world" | ||
continue-on-error: false | ||
|
||
- name: Run hasFileManager command | ||
run: npm run hasFileManager platform="ios,android" photoLibraryDescription="Hello" musicDescription="world" | ||
continue-on-error: false | ||
|
||
- name: Run hasContacts command | ||
run: npm run hasContacts contactsDescription="Hello world" platform="ios,android" | ||
continue-on-error: false | ||
|
||
- name: Run hasConnect command | ||
run: npm run hasConnect platform="ios,android" cameraDescription="Hello world" contactsDescription="Hello world" | ||
continue-on-error: false | ||
|
||
- name: Run hasLocation command | ||
run: npm run hasLocation platform="ios,android" locationDescription="Hello world" alwaysUseLocationDescription="Hello world" inUseLocationDescription="Hello world" | ||
continue-on-error: false |
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 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
Oops, something went wrong.