We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fafc0ae commit 7cd21dbCopy full SHA for 7cd21db
3 files changed
.github/workflows/pr.yml
@@ -18,8 +18,12 @@ jobs:
18
fetch-depth: 0
19
submodules: true
20
21
- - name: setup corepack for yarn 4
22
- run: corepack enable
+ - name: Use Latest Corepack
+ 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
27
28
- uses: actions/setup-node@v4
29
with:
@@ -28,7 +32,7 @@ jobs:
32
33
- name: Perform checks
30
34
run: |
31
- yarn install --frozen-lockfile
35
+ yarn install --immutable
36
yarn typecheck:ci
37
yarn lint:ci
38
yarn prettier:ci
.github/workflows/release.yml
@@ -35,7 +35,7 @@ jobs:
- name: Instal node modules
39
40
- name: Build
41
run: yarn build
0 commit comments