Skip to content

Commit 9c55fd7

Browse files
authored
chore: update yarn.lock (#105)
* chore: update yarn.lock * chore: remove yarn cache
1 parent 01a55ca commit 9c55fd7

File tree

2 files changed

+1361
-23
lines changed

2 files changed

+1361
-23
lines changed

.github/actions/setup/action.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,11 @@ runs:
1010
node-version: 20.x
1111
node-version-file: .nvmrc
1212

13-
- name: Cache dependencies
14-
id: yarn-cache
15-
uses: actions/cache@v4
16-
with:
17-
path: |
18-
**/node_modules
19-
.yarn/install-state.gz
20-
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
21-
restore-keys: |
22-
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
23-
${{ runner.os }}-yarn-
24-
2513
- name: Install dependencies
26-
if: steps.yarn-cache.outputs.cache-hit != 'true'
2714
run: yarn install --immutable
2815
shell: bash
2916

3017
- name: Install dependencies in example
31-
if: steps.yarn-cache.outputs.cache-hit != 'true'
3218
working-directory: ./example
3319
run: yarn install --immutable
3420
shell: bash
35-

0 commit comments

Comments
 (0)