File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,11 @@ jobs:
214
214
215
215
- name : Remove generated clients
216
216
if : ${{ steps.cache.outputs.cache-hit != 'true' && matrix.client.language == 'javascript' }}
217
- run : cd ${{ matrix.client.path }}/packages && ls | grep -v -E "(client-common|requester-*)" | xargs rm -rf
217
+ run : |
218
+ cd ${{ matrix.client.path }}/packages
219
+ ls | grep -v -E "(client-common|requester-*|algoliasearch)" | xargs rm -rf
220
+ cd algoliasearch
221
+ ls | grep -v -E "(__tests__|jest.config.ts)" | xargs rm -rf
218
222
219
223
- name : Setup
220
224
uses : ./.github/actions/setup
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ module.exports = {
23
23
'!clients/algoliasearch-client-javascript/scripts/**' ,
24
24
'!clients/algoliasearch-client-javascript/packages/requester-*/**' ,
25
25
'!clients/algoliasearch-client-javascript/packages/client-common/**' ,
26
+ '!clients/algoliasearch-client-javascript/packages/algoliasearch/__tests__/**' ,
26
27
'!clients/algoliasearch-client-javascript/packages/algoliasearch/jest.config.ts' ,
27
28
28
29
// PHP
You can’t perform that action at this time.
0 commit comments