Skip to content

Commit 7cd21db

Browse files
committed
fix: yarn lockfile
1 parent fafc0ae commit 7cd21db

File tree

3 files changed

+122
-118
lines changed

3 files changed

+122
-118
lines changed

.github/workflows/pr.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
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:
@@ -28,7 +32,7 @@ jobs:
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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
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

0 commit comments

Comments
 (0)