File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -216,8 +216,10 @@ jobs:
216
216
- name : Remove generated clients
217
217
if : ${{ steps.cache.outputs.cache-hit != 'true' && matrix.client.language == 'javascript' }}
218
218
run : |
219
- cd clients/algoliasearch-client-javascript/packages && ls . | grep -v -E "(client-common|requester-|algoliasearch)" | xargs rm -rf
220
- rm -rf clients/algoliasearch-client-javascript/packages/algoliasearch/lite
219
+ cd ${{ matrix.client.path }}/packages
220
+ ls . | grep -v -E "(client-common|requester-|algoliasearch)" | xargs rm -rf
221
+ rm -rf algoliasearch/lite
222
+ mv algoliasearch/package.json algoliasearch/package.json.tmp
221
223
222
224
- name : Setup
223
225
uses : ./.github/actions/setup
@@ -230,7 +232,10 @@ jobs:
230
232
231
233
- name : Update `yarn.lock` for JavaScript
232
234
if : ${{ matrix.client.language == 'javascript' }}
233
- run : cd ${{ matrix.client.path }} && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
235
+ run : |
236
+ cd ${{ matrix.client.path }}
237
+ mv packages/algoliasearch/package.json.tmp packages/algoliasearch/package.json
238
+ YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
234
239
235
240
- name : Build clients
236
241
if : ${{ steps.cache.outputs.cache-hit != 'true' && matrix.client.language != 'php' }}
You can’t perform that action at this time.
0 commit comments