We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb75c99 commit c91781bCopy full SHA for c91781b
.github/workflows/main.yml
@@ -14,7 +14,14 @@ jobs:
14
uses: actions/checkout@v2
15
with:
16
fetch-depth: 0
17
- - run: corepack enable
+ # fix corepack issue: https://github.com/nodejs/corepack/issues/627
18
+ - name: Use Latest Corepack
19
+ run: |
20
+ echo "Before: corepack version => $(corepack --version || echo 'not installed')"
21
+ npm install -g corepack@latest
22
+ echo "After : corepack version => $(corepack --version)"
23
+ corepack enable
24
+ pnpm --version
25
- name: Setup Node
26
uses: actions/setup-node@v1
27
0 commit comments