Skip to content

Commit 46aba68

Browse files
authored
Merge branch 'main' into device_orientation
2 parents 5c90177 + fb714ef commit 46aba68

File tree

240 files changed

+13120
-2974
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+13120
-2974
lines changed

.github/workflows/pr.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Flutter SDK
1717
uses: subosito/flutter-action@v2
1818
with:
19-
flutter-version: "3.19.3"
19+
flutter-version: "3.24.3"
2020

2121
- name: Install Melos
2222
run: dart pub global activate melos
@@ -29,3 +29,8 @@ jobs:
2929

3030
# - name: Run Unit Tests / Widget Tests
3131
# run: melos exec -- "flutter test"
32+
33+
- name: Run Auth Tests
34+
run: |
35+
cd modules/auth
36+
flutter test
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Test Commands in Starter
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test-modules:
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 20
12+
defaults:
13+
run:
14+
working-directory: starter
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v2
19+
20+
- name: Set up Flutter SDK
21+
uses: subosito/flutter-action@v2
22+
with:
23+
channel: 'stable'
24+
25+
- name: Set up Node.js
26+
uses: actions/setup-node@v2
27+
28+
- name: Install dependencies
29+
run: npm install
30+
31+
- name: Run hasCamera command
32+
run: npm run hasCamera platform="ios,android" cameraDescription="Hello world"
33+
continue-on-error: false
34+
35+
- name: Run hasFileManager command
36+
run: npm run hasFileManager platform="ios,android" photoLibraryDescription="Hello" musicDescription="world"
37+
continue-on-error: false
38+
39+
- name: Run hasContacts command
40+
run: npm run hasContacts contactsDescription="Hello world" platform="ios,android"
41+
continue-on-error: false
42+
43+
- name: Run hasConnect command
44+
run: npm run hasConnect platform="ios,android" cameraDescription="Hello world" contactsDescription="Hello world"
45+
continue-on-error: false
46+
47+
- name: Run hasLocation command
48+
run: npm run hasLocation platform="ios,android" locationDescription="Hello world" alwaysUseLocationDescription="Hello world" inUseLocationDescription="Hello world"
49+
continue-on-error: false

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ pubspec_overrides.yaml
88
/starter/ios/Flutter
99
starter/ios/Runner.xcodeproj/project.pbxproj
1010
/node_modules
11+
starter/node_modules
12+
starter/package-lock.json
13+
14+
# FVM Version Cache
15+
.fvm/

0 commit comments

Comments
 (0)