Skip to content

Commit

Permalink
ci(corepack): fix corepack key id mismatch (#1800)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timeless0911 authored Feb 3, 2025
1 parent 263a7ef commit ff4cddc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
fetch-depth: 1

- name: Install Pnpm
run: corepack enable
run: |
npm install -g corepack@latest --force
corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
ref: ${{ github.event.inputs.branch }}

- name: Install Pnpm
run: corepack enable
run: |
npm install -g corepack@latest --force
corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
fetch-depth: 1

- name: Install Pnpm
run: corepack enable
run: |
npm install -g corepack@latest --force
corepack enable
- name: Check skip CI
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
fetch-depth: 1

- name: Install Pnpm
run: corepack enable
run: |
npm install -g corepack@latest --force
corepack enable
- name: Check skip CI
run: echo "RESULT=$(node ./scripts/skipCI.js)" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit ff4cddc

Please sign in to comment.