Skip to content

Commit 63db48d

Browse files
Fix CI
Co-authored-by: SrinivasanTarget <srinivasan.sekar1990@gmail.com>
1 parent 89137e1 commit 63db48d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/appium3_ios.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install Appium and deps
4848
run: |
4949
npm install -g appium
50-
npm ci
50+
npm install --no-package-lock
5151
npm run build-flutter-by-service
5252
npm run build
5353
@@ -61,7 +61,9 @@ jobs:
6161
6262
- name: Install and launch WDA on Simulator
6363
run: |
64-
xcrun simctl install ${{ env.udid }} "$PREBUILT_WDA_PATH/WebDriverAgentRunner-Runner.app"
64+
echo "UDID: ${{ env.udid }}"
65+
echo "WDA path: $PREBUILT_WDA_PATH"
66+
xcrun simctl install ${{ env.udid }} "$PREBUILT_WDA_PATH"
6567
xcrun simctl launch ${{ env.udid }} "com.facebook.WebDriverAgentRunner.xctrunner"
6668
6769
- name: Download sample iOS app

0 commit comments

Comments
 (0)