Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: "Run Android native unit tests"
run: melos run test:android
- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ runner.os }}-build-artifact
include-hidden-files: true
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: "Run iOS native unit tests"
run: TEST_DEVICE='iPhone 16 Pro' TEST_OS='18.5' melos run test:ios
- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ runner.os }}-build-artifact
include-hidden-files: true
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: "Run build for Android"
run: melos run flutter-build-android
- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ runner.os }}-build-artifact
include-hidden-files: true
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- name: "Run build for iOS"
run: melos run flutter-build-ios
- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ runner.os }}-build-artifact
include-hidden-files: true
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
run: |
patrol test ${{ runner.debug && '--show-flutter-logs --verbose' || '' }}
- name: Upload test report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: android_integration_test_report
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
run: |
patrol test --dart-define=MAPS_API_KEY="$MAPS_API_KEY" --ios=$IOS_VERSION ${{ runner.debug && '--show-flutter-logs --verbose' || '' }} -d "$DEVICE_ID"
- name: Upload test report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: ios_integration_test_report
Expand Down
Loading