Skip to content

Commit

Permalink
fix: corepack signature error on every ci
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrieLii committed Feb 5, 2025
1 parent 9418e8f commit 09a02d1
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 11 deletions.
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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --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 [email protected] --activate
corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
Expand Down

0 comments on commit 09a02d1

Please sign in to comment.