Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zetavg committed Jan 19, 2025
1 parent 484345f commit 5b47b34
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test-native-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,10 @@ jobs:
SIMULATOR_UDID: ${{ steps.get-simulator-udid.outputs.simulator_udid }}
run: xcrun simctl boot $SIMULATOR_UDID

- name: Cache Appium Server
uses: actions/cache@v4
env:
cache-name: npm-appium
- uses: actions/cache/restore@v4
with:
path: ~/.npm
key: ${{ runner.os }}-${{ env.cache-name }}
key: ${{ runner.os }}-npm-appium

- name: Install and Run Appium Server
# id: install-maestro
Expand All @@ -108,6 +105,12 @@ jobs:
appium > /tmp/appium.log &
sleep 3
- uses: actions/cache/save@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-appium


- name: Test
env:
SIMULATOR_UDID: ${{ steps.get-simulator-udid.outputs.simulator_udid }}
Expand Down

0 comments on commit 5b47b34

Please sign in to comment.