Skip to content

Commit 629fa81

Browse files
fix #126 support for descendant API
Co-authored-by: SrinivasanTarget <[email protected]>
1 parent 158d6f4 commit 629fa81

File tree

9 files changed

+17
-28681
lines changed

9 files changed

+17
-28681
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
xcrun simctl boot $target_sim_id
4848
xcrun simctl bootstatus $target_sim_id -b
4949
npm install -g [email protected]
50-
npm ci
50+
npm install --no-package-lock
5151
npm run build
5252
appium driver run xcuitest build-wda
5353
wda=$(ls -d /Users/distiller/Library/Developer/Xcode/DerivedData/WebDriverAgent*)
@@ -98,7 +98,7 @@ jobs:
9898
xcrun simctl boot $target_sim_id
9999
xcrun simctl bootstatus $target_sim_id -b
100100
npm install -g [email protected]
101-
npm ci
101+
npm install --no-package-lock
102102
npm run build
103103
appium driver run xcuitest build-wda
104104
wda=$(ls -d /Users/distiller/Library/Developer/Xcode/DerivedData/WebDriverAgent*)

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
sudo udevadm trigger --name-match=kvm
4242
- name: Linting
4343
run: |
44-
npm install
44+
npm install --no-package-lock
4545
npm run prettier-check
4646
- name: Build Driver
4747
run: |
@@ -118,7 +118,7 @@ jobs:
118118
sudo udevadm trigger --name-match=kvm
119119
- name: Linting
120120
run: |
121-
npm install
121+
npm install --no-package-lock
122122
npm run prettier-check
123123
- name: Build Driver
124124
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/setup-node@v4
1212
with:
1313
node-version: 20
14-
- run: npm install
14+
- run: npm install --no-package-lock
1515
name: Install dependencies
1616
- run: npm run build
1717
name: Build

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ yarn-error.log*
1212
lerna-debug.log*
1313
.pnpm-debug.log*
1414
flutter-finder
15+
package-lock.json
1516
# Diagnostic reports (https://nodejs.org/api/report.html)
1617
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1718

0 commit comments

Comments
 (0)