Skip to content

Commit

Permalink
Fix Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
terrier989 committed Sep 7, 2023
1 parent b659097 commit afa69b3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
channel: [stable, beta, dev]
steps:
- uses: actions/checkout@v3
Expand All @@ -22,6 +21,10 @@ jobs:
working-directory: test_in_flutter
- name: Run tests (Dart)
run: dart test --platform=vm
- name: Run tests (Flutter)
run: flutter test
working-directory: test_in_flutter
test_in_browser:
needs: test
runs-on: ubuntu-latest
steps:
- uses: browser-actions/setup-chrome@v1
- name: Run tests in browser (Dart)
run: dart test --platform=chrome

0 comments on commit afa69b3

Please sign in to comment.