Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/subosito/flutter-a…
Browse files Browse the repository at this point in the history
…ction-2.14.0

Signed-off-by: Emil <emilzulufov@gmail.com>
  • Loading branch information
itsezlife authored Mar 23, 2024
2 parents f2dcb7c + 15623cb commit 85c9968
Show file tree
Hide file tree
Showing 236 changed files with 2,463 additions and 1,008 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/app_ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/app_ui/**"
- "packages/app_ui/**"
- ".github/workflows/app_ui.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/authentication_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/authentication_client/authentication_client/**"
- "packages/authentication_client/authentication_client/**"
- ".github/workflows/authentication_client.yaml"
branches:
- main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/chats_repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/chats_repository/**"
- "packages/chats_repository/**"
- ".github/workflows/chats_repository.yaml"
branches:
- main
Expand All @@ -16,5 +16,5 @@ jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.2.6
dart_sdk: 3.3.0
working_directory: packages/chats_repository
2 changes: 1 addition & 1 deletion .github/workflows/database_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/database_client/**"
- "packages/database_client/**"
- ".github/workflows/database_client.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/env/**"
- "packages/env/**"
- ".github/workflows/env.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/firebase_notifications_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/notifications_client/firebase_notifications_client/**"
- "packages/notifications_client/firebase_notifications_client/**"
- ".github/workflows/firebase_notifications_client.yaml"
branches:
- main
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: firebase_remote_config
name: firebase_remote_config_repository

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -7,8 +7,8 @@ concurrency:
on:
pull_request:
paths:
- "./packages/remote_config/firebase_remote_config/**"
- ".github/workflows/firebase_remote_config.yaml"
- "packages/firebase_remote_config_repository/**"
- ".github/workflows/firebase_remote_config_repository.yaml"
branches:
- main

Expand All @@ -17,4 +17,4 @@ jobs:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_version: 3.16.9
working_directory: packages/remote_config/firebase_remote_config
working_directory: packages/firebase_remote_config_repository
6 changes: 3 additions & 3 deletions .github/workflows/flutter_instagram_offline_first_clone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Dependencies
run: |
flutter pub global activate very_good_cli
very_good packages get
very_good packages get --recursive
- name: Format
run: dart format --set-exit-if-changed lib test
Expand All @@ -54,9 +54,9 @@ jobs:
- name: Check for existing and non-empty coverage file
id: test_coverage_file
run: if [ -s "/coverage/lcov.info" ]; then echo "result=true" >> $GITHUB_OUTPUT ; else echo "result=false" >> $GITHUB_OUTPUT; fi

- name: Very Good Coverage
if: steps.test_coverage_file.outputs.result == 'true'
uses: VeryGoodOpenSource/very_good_coverage@v3
with:
path: '/coverage/lcov.info'
path: "/coverage/lcov.info"
2 changes: 1 addition & 1 deletion .github/workflows/insta_blocks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/insta_blocks/**"
- "packages/insta_blocks/**"
- ".github/workflows/insta_blocks.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/instagram_blocks_ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/instagram_blocks_ui/**"
- "packages/instagram_blocks_ui/**"
- ".github/workflows/instagram_blocks_ui.yaml"
branches:
- main
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/notifications_client.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: notifications_client

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
paths:
- "packages/notifications_client/notifications_client/**"
- ".github/workflows/notifications_client.yaml"
branches:
- main

jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.3.0
working_directory: packages/notifications_client/notifications_client
20 changes: 20 additions & 0 deletions .github/workflows/notifications_repository.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: notifications_repository

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
paths:
- "packages/notifications_repository/**"
- ".github/workflows/notifications_repository.yaml"
branches:
- main

jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.3.0
working_directory: packages/notifications_repository
2 changes: 1 addition & 1 deletion .github/workflows/persistent_storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/storage/persistent_storage/**"
- "packages/storage/persistent_storage/**"
- ".github/workflows/persistent_storage.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/posts_repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/posts_repository/**"
- "packages/posts_repository/**"
- ".github/workflows/posts_repository.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/powersync_repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/powersync_repository/**"
- "packages/powersync_repository/**"
- ".github/workflows/powersync_repository.yaml"
branches:
- main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/search_repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/search_repository/**"
- "packages/search_repository/**"
- ".github/workflows/search_repository.yaml"
branches:
- main
Expand All @@ -16,5 +16,5 @@ jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.2.6
working_directory: packages/search_repository
dart_sdk: 3.3.0
working_directory: packages/search_repository
2 changes: 1 addition & 1 deletion .github/workflows/secure_storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/storage/secure_storage/**"
- "packages/storage/secure_storage/**"
- ".github/workflows/secure_storage.yaml"
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/shared/**"
- "packages/shared/**"
- ".github/workflows/shared.yaml"
branches:
- main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/spell_checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
- uses: actions/checkout@v4
- uses: zwaldowski/cspell-action@v1
with:
paths: "flutter_instagram_offline_first_clone/**/*.{md,dart}"
config: flutter_instagram_offline_first_clone/.vscode/cspell.json
exclude: ".gitignore"
paths: "**/*.{md,dart}"
config: .vscode/cspell.json
exclude: ".gitignore"
6 changes: 3 additions & 3 deletions .github/workflows/storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/storage/storage/**"
- "packages/storage/storage/**"
- ".github/workflows/storage.yaml"
branches:
- main
Expand All @@ -16,5 +16,5 @@ jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.2.6
working_directory: packages/storage/storage
dart_sdk: 3.3.0
working_directory: packages/storage/storage
6 changes: 3 additions & 3 deletions .github/workflows/stories_repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/stories_repository/**"
- "packages/stories_repository/**"
- ".github/workflows/stories_repository.yaml"
branches:
- main
Expand All @@ -16,5 +16,5 @@ jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.2.6
working_directory: packages/stories_repository
dart_sdk: 3.3.0
working_directory: packages/stories_repository
2 changes: 1 addition & 1 deletion .github/workflows/supabase_authentication_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/authentication_client/supabase_authentication_client/**"
- "packages/authentication_client/supabase_authentication_client/**"
- ".github/workflows/supabase_authentication_client.yaml"
branches:
- main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/token_storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/authentication_client/token_storage/**"
- "packages/authentication_client/token_storage/**"
- ".github/workflows/token_storage.yaml"
branches:
- main
Expand All @@ -16,5 +16,5 @@ jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
with:
dart_sdk: 3.2.6
working_directory: packages/authentication_client/token_storage
dart_sdk: 3.3.0
working_directory: packages/authentication_client/token_storage
4 changes: 2 additions & 2 deletions .github/workflows/user_repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
pull_request:
paths:
- "./packages/user_repository/**"
- "packages/user_repository/**"
- ".github/workflows/user_repository.yaml"
branches:
- main
Expand All @@ -17,4 +17,4 @@ jobs:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_version: 3.16.9
working_directory: packages/user_repository
working_directory: packages/user_repository
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*.swp
.atom/
.idea/
.vscode/
.DS_Store
.atom/
.buildlog/
Expand All @@ -30,7 +29,7 @@ lib/l10n/generated/*
.classpath
.project
.settings/
.vscode/*
.vscode/extensions.json

# Files and directories created by pub
.dart_tool/
Expand Down Expand Up @@ -150,8 +149,6 @@ app.*.map.json
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
!/dev/ci/**/Gemfile.lock
!.vscode/extensions.json
!.vscode/launch.json
!.idea/codeStyles/
!.idea/dictionaries/
!.idea/runConfigurations/
Loading

0 comments on commit 85c9968

Please sign in to comment.