File tree Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 46
46
dart run build_runner test -r -- -P concurrent-tests
47
47
dart run build_runner test -r -- -P non-concurrent-tests
48
48
timeout-minutes : 10
49
+ if : ${{ always() && steps.install.outcome == 'success' }}
50
+
51
+ build_legacy :
52
+ runs-on : ubuntu-latest
53
+ strategy :
54
+ fail-fast : false
55
+ matrix :
56
+ sdk : [ 2.13.4 ]
57
+ steps :
58
+ - uses : actions/checkout@v2
59
+ - uses : dart-lang/setup-dart@v1
60
+ with :
61
+ sdk : ${{ matrix.sdk }}
62
+
63
+ - id : install
64
+ name : Install dependencies
65
+ run : pub get
66
+ timeout-minutes : 2
67
+
68
+ - name : Check formatting
69
+ run : dart format . -l 120 --set-exit-if-changed
70
+ if : ${{ always() && steps.install.outcome == 'success' }}
71
+
72
+ - name : Analyze project source
73
+ run : dartanalyzer .
74
+ if : ${{ always() && steps.install.outcome == 'success' }}
75
+
76
+ - name : Run tests (DDC)
77
+ run : |
78
+ pub run build_runner test -- -P concurrent-tests
79
+ pub run build_runner test -- -P non-concurrent-tests
80
+ timeout-minutes : 10
81
+ if : ${{ always() && steps.install.outcome == 'success' }}
82
+
83
+ - name : Run tests (dart2js)
84
+ run : |
85
+ pub run build_runner test -r -- -P concurrent-tests
86
+ pub run build_runner test -r -- -P non-concurrent-tests
87
+ timeout-minutes : 10
49
88
if : ${{ always() && steps.install.outcome == 'success' }}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: A Dart unit testing library for OverReact components that mimics th
4
4
homepage : https://github.com/Workiva/react_testing_library/
5
5
documentation : https://workiva.github.io/react_testing_library
6
6
environment :
7
- sdk : " >=2.18.4 <3.0.0"
7
+ sdk : " >=2.11.0 <3.0.0"
8
8
9
9
dependencies :
10
10
color : " >=2.1.1 <4.0.0"
You can’t perform that action at this time.
0 commit comments