Skip to content

Commit

Permalink
changes in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Sep 11, 2024
1 parent e049357 commit 1da654b
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 7 deletions.
34 changes: 29 additions & 5 deletions .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,55 @@ runs:
flutter-version: '3.19.5'

# Get package dependencies and generate files
- name: Get package dependencies and generate files
# - name: Get package dependencies and generate files
# shell: bash
# run: |
# flutter pub get
# flutter pub run build_runner build --delete-conflicting-outputs

# Get example app dependencies and generate files
- name: Get example app dependencies and generate files
shell: bash
working-directory: packages/reown_core
run: |
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
dart format --output=none --set-exit-if-changed .
flutter analyze
# Get example app dependencies and generate files
- name: Get example app dependencies and generate files
shell: bash
working-directory: example/wallet
working-directory: packages/reown_sign
run: |
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
dart format --output=none --set-exit-if-changed .
flutter analyze
# Get example app dependencies and generate files
- name: Get example app dependencies and generate files
shell: bash
working-directory: example/dapp
working-directory: packages/reown_walletkit
run: |
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
dart format --output=none --set-exit-if-changed .
flutter analyze
- name: Verify formatting and analyze project source
# Get example app dependencies and generate files
- name: Get example app dependencies and generate files
shell: bash
run: dart format --output=none --set-exit-if-changed .
working-directory: packages/reown_appkit
run: |
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
dart format --output=none --set-exit-if-changed .
flutter analyze
# - name: Verify formatting and analyze project source
# shell: bash
# run: dart format --output=none --set-exit-if-changed .

# - name: Analyze project source
# shell: bash
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_appkit/example/base/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
solana_web3: ^0.1.3

dev_dependencies:
build_runner: ^2.0.0
build_runner: ^2.4.7
dependency_validator: ^3.2.2
flutter_lints: ^2.0.0
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_walletkit/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
solana_web3: ^0.1.3

dev_dependencies:
build_runner: ^2.0.0
build_runner: ^2.4.7
dependency_validator: ^3.2.2
flutter_lints: ^2.0.0
flutter_test:
Expand Down
3 changes: 3 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@ environment:
# sdk: flutter

# dev_dependencies:
# build_runner: ^2.4.7
# dependency_validator: ^3.2.2
# flutter_lints: ^2.0.0
# flutter_test:
# sdk: flutter

0 comments on commit 1da654b

Please sign in to comment.