Skip to content

Commit

Permalink
test(ios): delete Podfile.lock on pod install
Browse files Browse the repository at this point in the history
in practice this file is out of date and causes failures more often
than having it survive the install is useful.

github actions cache will still pull from the secondary key and get
reasonable caching behavior even if the lockfile hash changes
  • Loading branch information
mikehardy committed Mar 7, 2024
1 parent ff8afd9 commit 3754897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"tests:ios:test-reuse": "cd tests && SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 yarn detox test --configuration ios.sim.debug --reuse --loglevel warn",
"tests:ios:test-cover": "cd tests && SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 ./node_modules/.bin/nyc yarn detox test --configuration ios.sim.debug --loglevel warn",
"tests:ios:test-cover-reuse": "cd tests && SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 node_modules/.bin/nyc yarn detox test --configuration ios.sim.debug --reuse --loglevel warn",
"tests:ios:pod:install": "cd tests && rm -rf ios/ReactNativeFirebaseDemo.xcworkspace && yarn pod-install",
"tests:ios:pod:install": "cd tests && rm -f ios/Podfile.lock && rm -rf ios/ReactNativeFirebaseDemo.xcworkspace && yarn pod-install",
"format:markdown": "prettier --write \"docs/**/*.md\""
},
"devDependencies": {
Expand Down

0 comments on commit 3754897

Please sign in to comment.