Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
xcrun simctl boot $target_sim_id
xcrun simctl bootstatus $target_sim_id -b
npm install -g [email protected]
npm ci
npm install --no-package-lock
npm run build
appium driver run xcuitest build-wda
wda=$(ls -d /Users/distiller/Library/Developer/Xcode/DerivedData/WebDriverAgent*)
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
xcrun simctl boot $target_sim_id
xcrun simctl bootstatus $target_sim_id -b
npm install -g [email protected]
npm ci
npm install --no-package-lock
npm run build
appium driver run xcuitest build-wda
wda=$(ls -d /Users/distiller/Library/Developer/Xcode/DerivedData/WebDriverAgent*)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
sudo udevadm trigger --name-match=kvm
- name: Linting
run: |
npm install
npm install --no-package-lock
npm run prettier-check
- name: Build Driver
run: |
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
sudo udevadm trigger --name-match=kvm
- name: Linting
run: |
npm install
npm install --no-package-lock
npm run prettier-check
- name: Build Driver
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm install --no-package-lock
name: Install dependencies
- run: npm run build
name: Build
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
flutter-finder
package-lock.json
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

Expand Down
Loading
Loading