Skip to content

Commit

Permalink
Merge branch 'main' into fix/auto-dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
sharjeelyunus authored Feb 7, 2025
2 parents 0d03a93 + 83988ad commit 8595d1c
Show file tree
Hide file tree
Showing 135 changed files with 8,472 additions and 1,068 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,8 @@ jobs:

# - name: Run Unit Tests / Widget Tests
# run: melos exec -- "flutter test"

- name: Run Auth Tests
run: |
cd modules/auth
flutter test
49 changes: 49 additions & 0 deletions .github/workflows/starter-commands.yml
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ pubspec_overrides.yaml
/starter/ios/Flutter
starter/ios/Runner.xcodeproj/project.pbxproj
/node_modules
starter/node_modules
starter/package-lock.json

# FVM Version Cache
.fvm/
.fvm/
Loading

0 comments on commit 8595d1c

Please sign in to comment.