Skip to content

Commit

Permalink
Properly install appium
Browse files Browse the repository at this point in the history
  • Loading branch information
sehyod committed Nov 27, 2023
1 parent 5dc71bc commit 39027c8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ jobs:
path=$(grep -o '^Touch .*\.app' build.log | sed 's/Touch //')
echo "Extracted Path: $path"
echo "APP_PATH=$path" >> $GITHUB_ENV
- name: Install Appium
run: npm install -g appium
- name: Install Appium driver
run: yarn dlx appium driver install xcuitest
run: appium driver install xcuitest
- name: Start Appium server
run: nohup yarn dlx appium server 2>&1 > "${{ matrix.scheme }}/appium.log" &
run: nohup appium server 2>&1 > "${{ matrix.scheme }}/appium.log" &
- name: Display appium logs
uses: webiny/action-post-run@3.0.0
with:
Expand Down

0 comments on commit 39027c8

Please sign in to comment.