Skip to content

Commit 266ee78

Browse files
committed
fix(javascript): build
1 parent eec1a92 commit 266ee78

File tree

21 files changed

+334
-406
lines changed

21 files changed

+334
-406
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ runs:
8787
if: ${{ inputs.language == 'javascript' }}
8888
uses: actions/cache@v3
8989
with:
90-
path: clients/algoliasearch-client-javascript/node_modules
90+
path: |
91+
clients/algoliasearch-client-javascript/node_modules/.cache/
92+
clients/algoliasearch-client-javascript/node_modules/
9193
key: node-modules-client-${{ env.CACHE_VERSION }}-${{ hashFiles('clients/algoliasearch-client-javascript/yarn.lock') }}
9294

9395
- name: Install JavaScript client dependencies

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162

163163
- name: Build '${{ matrix.client }}' client
164164
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
165-
run: cd clients/algoliasearch-client-javascript && yarn build ${{ matrix.client }}
165+
run: cd clients/algoliasearch-client-javascript && yarn build:many @algolia/${{ matrix.client }}
166166

167167
- name: Run tests for '${{ matrix.client }}'
168168
if: ${{ steps.cache.outputs.cache-hit != 'true' }}

0 commit comments

Comments
 (0)