Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit a2f0155

Browse files
committed
CIでcorepackを使用しないように
fix: #248
1 parent af2f86e commit a2f0155

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/eslint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818

19-
- name: Enable corepack
20-
run: corepack enable
21-
2219
- name: Use Node.js ${{ matrix.node-version }}
2320
uses: actions/setup-node@v4
2421
with:
2522
node-version: ${{ matrix.node-version }}
2623

24+
- name: Install pnpm
25+
run: corepack disable && npm install -g pnpm
26+
2727
- name: Install dependencies
2828
run: pnpm install
2929

.github/workflows/firebase-hosting-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
with:
1616
node-version: 22.x
1717

18-
- name: Enable corepack
19-
run: corepack enable
18+
- name: Install pnpm
19+
run: corepack disable && npm install -g pnpm
2020

2121
- name: Install dependencies
2222
run: pnpm install

.github/workflows/license_check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
- name: Install Node.js
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 20.x
26+
node-version: 22.x
2727

28-
- name: Enable corepack
29-
run: corepack enable
28+
- name: Install pnpm
29+
run: corepack disable && npm install -g pnpm
3030

3131
- uses: actions/setup-go@v4
3232
with:

.github/workflows/vitest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26-
- name: Enable corepack
27-
run: corepack enable
28-
2926
- name: Use Node.js ${{ matrix.node-version }}
3027
uses: actions/setup-node@v4
3128
with:
3229
node-version: ${{ matrix.node-version }}
3330

31+
- name: Install pnpm
32+
run: corepack disable && npm install -g pnpm
33+
3434
- name: Install dependencies
3535
run: pnpm install
3636

0 commit comments

Comments
 (0)