Skip to content

Commit 3065d6e

Browse files
committed
remove unrelated change
1 parent d2edb69 commit 3065d6e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ jobs:
142142
with:
143143
key: |
144144
${{ matrix.client }}-${{ hashFiles(
145-
format('clients/algoliasearch-client-javascript/packages/{0}/**', matrix.client)
145+
format('clients/algoliasearch-client-javascript/packages/{0}/**', matrix.client),
146+
'yarn.lock'
146147
)}}
147148
path: clients/algoliasearch-client-javascript/packages/${{ matrix.client }}
148149

@@ -258,7 +259,8 @@ jobs:
258259
with:
259260
key: |
260261
algoliasearch-${{ hashFiles(
261-
'clients/algoliasearch-client-javascript/packages/algoliasearch/**'
262+
'clients/algoliasearch-client-javascript/packages/algoliasearch/**',
263+
'yarn.lock'
262264
)}}
263265
path: clients/algoliasearch-client-javascript/packages/algoliasearch/
264266

scripts/release/process-release.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,6 @@ async function processRelease(): Promise<void> {
300300
});
301301
}
302302

303-
// We need to run a `yarn install` at this point in case the JavaScript client has changed,
304-
// otherwise we will grab dependencies from the remote
305-
await run('YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install');
306-
307303
// We push commits to each repository AFTER all the generations are done.
308304
// Otherwise, we will end up having broken release.
309305
for (const [lang, { current, releaseType }] of Object.entries(

0 commit comments

Comments
 (0)