Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jun 14, 2024
1 parent 42b8f0d commit d09de70
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_ci_downgrade_analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
with:
sdk: ${{ matrix.dart }}
- run: dart --version
- run: dart pub global activate dev_test
- run: dart pub global run dev_test:run_ci --pub-downgrade --analyze --no-override --recursive
- run: dart pub global activate dev_build
- run: dart pub global run dev_build:run_ci --pub-downgrade --analyze --no-override --recursive
1 change: 0 additions & 1 deletion firebase_functions/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ dependencies:
version: '>=0.9.0'
dev_dependencies:
test: ">=1.2.0"
dev_test: any
process_run: '>=0.10.0+1'
8 changes: 8 additions & 0 deletions firebase_functions/test/mock_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:tekartik_firebase_functions/firebase_functions.dart';
import 'package:test/test.dart';

class SchedulerFunctionsMock
with SchedulerFunctionsDefaultMixin
Expand All @@ -7,3 +8,10 @@ class SchedulerFunctionsMock
class ScheduleEventMock
with SchedulerEventDefaultMixin
implements ScheduleEvent {}

void main() {
test('mock', () {
ScheduleEventMock();
SchedulerFunctionsMock();
});
}
1 change: 0 additions & 1 deletion firebase_functions_http/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ dependencies:

dev_dependencies:
test: ">=1.2.0"
dev_test: any
build_runner: ">=0.8.8"
build_test:

Expand Down
1 change: 0 additions & 1 deletion firebase_functions_io/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ dependencies:

dev_dependencies:
test: ">=1.2.0"
dev_test: any
build_runner: ">=0.8.8"
build_test:
build_web_compilers:
Expand Down
2 changes: 1 addition & 1 deletion repo_support/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ environment:
sdk: '>=3.4.0-0 <4.0.0'

dev_dependencies:
dev_build: '>=0.16.5-4'
test: '>=1.0.0'
dev_test: '>=0.13.4-dev.1'
tekartik_lints:
git:
url: https://github.com/tekartik/common.dart
Expand Down
2 changes: 1 addition & 1 deletion repo_support/tool/run_ci.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:dev_test/package.dart';
import 'package:dev_build/package.dart';
import 'package:path/path.dart';

Future main() async {
Expand Down

0 comments on commit d09de70

Please sign in to comment.