Skip to content

Commit 4381359

Browse files
committed
fix ci
1 parent bf57800 commit 4381359

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates
33
version: 2
44

5+
enable-beta-ecosystems: true
6+
57
updates:
8+
- package-ecosystem: "pub"
9+
directory: "."
10+
schedule:
11+
interval: "monthly"
612
- package-ecosystem: "github-actions"
713
directory: "/"
814
schedule:

pubspec.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ dependencies:
1818
ref: dart3a
1919
http:
2020
dev_dependencies:
21-
yaml:
22-
dev_build:
21+
yaml: ">=3.1.2"
22+
dev_build: ">=1.1.0+2"
2323
tekartik_bootstrap:
2424
git:
2525
url: https://github.com/tekartik/bootstrap.dart
2626
ref: dart3a
2727
version: '>=0.3.0'
28-
build_runner:
28+
build_runner: ">=2.4.13"
2929
build_test:
30-
build_web_compilers:
31-
test: any
32-
process_run: '>=1.0.0'
30+
build_web_compilers: ">=4.0.11"
31+
test: ">=1.24.0"
32+
process_run: ">=1.2.1+1"
3333
googleapis_auth: '>=1.6.0'
3434
tekartik_js_utils:
3535
git:

test/io_dummy_test.dart

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import 'package:test/test.dart';
2+
3+
Future<void> main() async {
4+
test('no vm test', () {});
5+
}

0 commit comments

Comments
 (0)