Skip to content

Commit ddf78b0

Browse files
committed
fix: setup-node error
1 parent de8b2af commit ddf78b0

12 files changed

+12
-12
lines changed

.github/workflows/integration-test-Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 1
3434

3535
- name: Install Pnpm
36-
run: corepack enable
36+
run: npm i -g --force corepack && corepack enable
3737

3838
- name: Check skip CI
3939
shell: bash

.github/workflows/lint-Linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fetch-depth: 1
3131

3232
- name: Install Pnpm
33-
run: corepack enable
33+
run: npm i -g --force corepack && corepack enable
3434

3535
- name: Setup Node.js 18
3636
uses: actions/setup-node@v3

.github/workflows/release-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 1
2222

2323
- name: Install Pnpm
24-
run: corepack enable
24+
run: npm i -g --force corepack && corepack enable
2525

2626
- name: Setup Node.js 18
2727
uses: actions/setup-node@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fetch-depth: 1
3535

3636
- name: Install Pnpm
37-
run: corepack enable
37+
run: npm i -g --force corepack && corepack enable
3838

3939
- name: Setup Node.js 18
4040
uses: actions/setup-node@v3

.github/workflows/test-Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fetch-depth: 1
3535

3636
- name: Install Pnpm
37-
run: corepack enable
37+
run: npm i -g --force corepack && corepack enable
3838

3939
- name: Check skip CI
4040
shell: bash

.github/workflows/test-builder-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
nx-
2828
2929
- name: Install Pnpm
30-
run: corepack enable
30+
run: npm i -g --force corepack && corepack enable
3131

3232
- name: Setup Node.js 18
3333
uses: actions/setup-node@v3

.github/workflows/test-garfish-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
nx-
2828
2929
- name: Install Pnpm
30-
run: corepack enable
30+
run: npm i -g --force corepack && corepack enable
3131

3232
- name: Setup Node.js 18
3333
uses: actions/setup-node@v3

.github/workflows/test-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 1
3030

3131
- name: Install Pnpm
32-
run: corepack enable
32+
run: npm i -g --force corepack && corepack enable
3333

3434
- name: Check skip CI
3535
run: echo "RESULT=$(node ./scripts/skipCI.js)" >> "$GITHUB_OUTPUT"

.github/workflows/test-module-Linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 1
1818

1919
- name: Install Pnpm
20-
run: corepack enable
20+
run: npm i -g --force corepack && corepack enable
2121

2222
- name: Setup Node.js 18
2323
uses: actions/setup-node@v3

.github/workflows/test-module-Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 1
2626

2727
- name: Install Pnpm
28-
run: corepack enable
28+
run: npm i -g --force corepack && corepack enable
2929

3030
- name: Setup Node.js 18
3131
uses: actions/setup-node@v3

.github/workflows/vitest-Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 1
3030

3131
- name: Install Pnpm
32-
run: corepack enable
32+
run: npm i -g --force corepack && corepack enable
3333

3434
- name: Check skip CI
3535
shell: bash

.github/workflows/vitest-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 1
3030

3131
- name: Install Pnpm
32-
run: corepack enable
32+
run: npm i -g --force corepack && corepack enable
3333

3434
- name: Check skip CI
3535
run: echo "RESULT=$(node ./scripts/skipCI.js)" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)