We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3489819 commit 9b4c4bbCopy full SHA for 9b4c4bb
.github/workflows/ci.yml
@@ -30,15 +30,21 @@ jobs:
30
31
- name: Cache yarn dependencies
32
uses: actions/cache@v4
33
+ id: yarn-cache
34
with:
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
35
- key: yarn-cache-${{ hashFiles('**/yarn.lock') }}
+ path: |
36
+ ${{ steps.yarn-cache-dir-path.outputs.dir }}
37
+ .yarn/cache
38
+ .yarn/unplugged
39
+ .yarn/build-state.yml
40
+ .yarn/install-state.gz
41
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
42
restore-keys: |
- yarn-cache-
43
+ ${{ runner.os }}-yarn-
44
45
- name: Install Dependencies
46
run: |
- yarn install --immutable --inline-builds
47
+ yarn install --no-immutable
48
49
- name: Build shared packages
50
0 commit comments