We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b659097 commit afa69b3Copy full SHA for afa69b3
.github/workflows/dart.yml
@@ -4,10 +4,9 @@ on: [push, pull_request]
4
5
jobs:
6
test:
7
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- os: [ubuntu-latest]
11
channel: [stable, beta, dev]
12
steps:
13
- uses: actions/checkout@v3
@@ -22,6 +21,10 @@ jobs:
22
21
working-directory: test_in_flutter
23
- name: Run tests (Dart)
24
run: dart test --platform=vm
25
- - name: Run tests (Flutter)
26
- run: flutter test
27
- working-directory: test_in_flutter
+ test_in_browser:
+ needs: test
+ steps:
28
+ - uses: browser-actions/setup-chrome@v1
29
+ - name: Run tests in browser (Dart)
30
+ run: dart test --platform=chrome
0 commit comments