Skip to content

Commit

Permalink
fix: corepack signature error on ci (#3482)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrieLii authored Feb 5, 2025
1 parent f141396 commit 7407daf
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/devtools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-modern-ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-modern.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-next-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-next-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-router.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
fetch-depth: 0

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
fetch-depth: 10

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
fetch-depth: 25

- name: Install Pnpm
run: corepack enable
run: |
corepack prepare pnpm@8.11.0 --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down

0 comments on commit 7407daf

Please sign in to comment.