Skip to content

Commit

Permalink
⏪️ --
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexV525 committed Nov 2, 2023
1 parent f791732 commit 5ae08c6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 29 deletions.
14 changes: 7 additions & 7 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@ command:

scripts:
github-ci:
run: (melos bs || echo '') && melos format && melos analyze && melos dryRun && melos test || exit 0
run: melos format && melos analyze && melos dryRun && melos test

format:
exec: $MELOS_ROOT_PATH/scripts/sdk_satisfaction && dart format --set-exit-if-changed . || exit 0
exec: dart format --set-exit-if-changed .

analyze:
run: melos run analyze:dart && melos run analyze:flutter

analyze:dart:
exec: $MELOS_ROOT_PATH/scripts/sdk_satisfaction && dart analyze --fatal-infos || exit 0
exec: dart analyze --fatal-infos
packageFilters:
flutter: false

analyze:flutter:
exec: $MELOS_ROOT_PATH/scripts/sdk_satisfaction && flutter analyze --fatal-infos || exit 0
exec: flutter analyze --fatal-infos
packageFilters:
flutter: true

dryRun:
exec: $MELOS_ROOT_PATH/scripts/sdk_satisfaction && dart pub publish --dry-run || exit 0
exec: dart pub publish --dry-run
packageFilters:
private: false

Expand All @@ -46,13 +46,13 @@ scripts:
melos run test:flutter --no-select
test:dart:
exec: $MELOS_ROOT_PATH/scripts/sdk_satisfaction && dart test --chain-stack-traces --platform=vm,chrome,firefox || exit 0
exec: dart test --chain-stack-traces --platform=vm,chrome,firefox
packageFilters:
flutter: false
dirExists: 'test'

test:flutter:
exec: $MELOS_ROOT_PATH/scripts/sdk_satisfaction && flutter test || exit 0
exec: flutter test
packageFilters:
flutter: true
dirExists: 'test'
Binary file removed scripts/sdk_satisfaction
Binary file not shown.
22 changes: 0 additions & 22 deletions scripts/sdk_satisfaction.dart

This file was deleted.

0 comments on commit 5ae08c6

Please sign in to comment.