-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 1.23 KB
/
browser-tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Run Browser Tests
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout own repository
uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- run: flutter doctor -v
- name: Run chrome driver
run: |
git clone https://github.com/Bdaya-Dev/web_installers --branch new-chromedriver-urls
cd web_installers/packages/web_drivers
dart pub get
dart lib/web_driver_installer.dart chromedriver &
- name: Run browser tests
run: flutter drive --driver=test_driver/integration_test.dart --target integration_test/app_test.dart -d web-server --release --browser-name=chrome --no-headless
- name: Git Commit Integration Test Reports
if: github.event_name == 'push'
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add integration_test/reports
if [ -n "$(git status --porcelain)" ]; then
git commit -m "chore: added integration test reports"
git push
fi