File tree Expand file tree Collapse file tree 3 files changed +122
-118
lines changed
Expand file tree Collapse file tree 3 files changed +122
-118
lines changed Original file line number Diff line number Diff line change 1818 fetch-depth : 0
1919 submodules : true
2020
21- - name : setup corepack for yarn 4
22- run : corepack enable
21+ - name : Use Latest Corepack
22+ run : |
23+ echo "Before: corepack version => $(corepack --version || echo 'not installed')"
24+ npm install -g corepack@latest
25+ echo "After : corepack version => $(corepack --version)"
26+ corepack enable
2327
2428 - uses : actions/setup-node@v4
2529 with :
2832
2933 - name : Perform checks
3034 run : |
31- yarn install --frozen-lockfile
35+ yarn install --immutable
3236 yarn typecheck:ci
3337 yarn lint:ci
3438 yarn prettier:ci
Original file line number Diff line number Diff line change 3535
3636 - name : Instal node modules
3737 run : |
38- yarn install --frozen-lockfile
38+ yarn install --immutable
3939
4040 - name : Build
4141 run : yarn build
You can’t perform that action at this time.
0 commit comments