Skip to content

Commit

Permalink
try fix timeout issues
Browse files Browse the repository at this point in the history
  • Loading branch information
konsultaner committed Sep 7, 2024
1 parent 579bec0 commit 0d02481
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ master ]

jobs:
build:
analyze:
runs-on: ubuntu-latest

steps:
Expand All @@ -22,7 +22,7 @@ jobs:

test_vm:
runs-on: ubuntu-latest
needs: build
needs: analyze

steps:
- uses: actions/checkout@v4
Expand All @@ -42,7 +42,7 @@ jobs:

test_chrome:
runs-on: ubuntu-latest
needs: build
needs: analyze

steps:
- uses: actions/checkout@v4
Expand All @@ -52,7 +52,7 @@ jobs:
run: dart pub get

- name: Run tests on Chrome with coverage
run: dart run test -p chrome --coverage="coverage_chrome"
run: dart run test -p chrome --coverage="coverage_chrome" --timeout=5m --concurrency=1

- name: Upload Chrome coverage
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 0d02481

Please sign in to comment.