1717 - uses : actions/setup-node@v4
1818 with :
1919 node-version : ' 20'
20+ - name : Enable Corepack
21+ shell : bash
22+ run : corepack enable
2023 - uses : actions/cache@v4
2124 id : yarn-cache
2225 name : Cache npm deps
2528 node_modules
2629 **/node_modules
2730 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
28- - run : yarn install --frozen-lockfile
31+ - run : yarn install --immutable
2932 if : steps.yarn-cache.outputs.cache-hit != 'true'
3033 - uses : actions/cache@v4
3134 id : dist
5356 - uses : actions/setup-node@v4
5457 with :
5558 node-version : ' 20'
59+ - name : Enable Corepack
60+ shell : bash
61+ run : corepack enable
5662 - uses : actions/cache@v4
5763 id : yarn-cache
5864 name : Cache npm deps
6167 node_modules
6268 **/node_modules
6369 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
64- - run : yarn install --frozen-lockfile
70+ - run : yarn install --immutable
6571 if : steps.yarn-cache.outputs.cache-hit != 'true'
6672 - uses : actions/cache@v4
6773 id : lint-cache
9096 - uses : actions/setup-node@v4
9197 with :
9298 node-version : ' 20'
99+ - name : Enable Corepack
100+ shell : bash
101+ run : corepack enable
93102 - uses : actions/cache@v4
94103 id : yarn-cache
95104 name : Cache npm deps
99108 **/node_modules
100109 ~/.cache/Cypress
101110 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
102- - run : yarn install --frozen-lockfile
111+ - run : yarn install --immutable
103112 if : steps.yarn-cache.outputs.cache-hit != 'true'
104113 - uses : actions/cache@v4
105114 id : dist
@@ -131,6 +140,9 @@ jobs:
131140 - uses : actions/setup-node@v4
132141 with :
133142 node-version : ' 20'
143+ - name : Enable Corepack
144+ shell : bash
145+ run : corepack enable
134146 - uses : actions/cache@v4
135147 id : yarn-cache
136148 name : Cache npm deps
@@ -140,7 +152,7 @@ jobs:
140152 **/node_modules
141153 ~/.cache/Cypress
142154 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
143- - run : yarn install --frozen-lockfile
155+ - run : yarn install --immutable
144156 if : steps.yarn-cache.outputs.cache-hit != 'true'
145157 - uses : actions/cache@v4
146158 id : dist
0 commit comments