File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -149,19 +149,32 @@ jobs:
149
149
name : Unit tests Web
150
150
runs-on : ${{ matrix.os }}
151
151
strategy :
152
+ fail-fast : false
152
153
matrix :
153
154
flutter-version : ['3.19.0', '3.29.0']
154
- os : [ubuntu-latest]
155
- path : ['packages/serverpod_client']
155
+ os : [ubuntu-latest, windows-latest]
156
+ include :
157
+ - compiler : dart2js
158
+ - os : ubuntu-latest
159
+ platform : chrome
160
+ - os : windows-latest
161
+ platform : edge
162
+ - flutter-version : ' 3.29.0'
163
+ platform : chrome
164
+ compiler : dart2wasm
165
+
156
166
steps :
157
167
- uses : actions/checkout@v3
158
168
- uses : subosito/flutter-action@v2
159
169
with :
160
170
flutter-version : ${{ matrix.flutter-version }}
161
171
- uses : browser-actions/setup-chrome@v1
162
172
- name : Run unit tests
163
- run : dart test -p chrome
164
- working-directory : ${{ matrix.path }}
173
+ run : >-
174
+ dart test
175
+ --platform=${{ matrix.platform }}
176
+ --compiler=${{ matrix.compiler }}
177
+ working-directory : packages/serverpod_client
165
178
166
179
e2e_io_tests :
167
180
name : Serverpod E2E IO tests
You can’t perform that action at this time.
0 commit comments