Skip to content

Commit 23126ce

Browse files
committed
add corepack enable to install pnpm in workflows
1 parent 9a11493 commit 23126ce

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/pytest.yml

+4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ jobs:
5454
cache: pnpm
5555
cache-dependency-path: examples/${{ matrix.c2a_user }}/pnpm-lock.yaml
5656

57+
- name: setup pnpm
58+
run: |
59+
corepack enable pnpm
60+
5761
- name: Cache C2A devtools
5862
id: cache-c2a-devtools
5963
uses: actions/cache@v4.0.2

.github/workflows/validate-renovate.yml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
- uses: actions/checkout@v4.1.7
1515
- uses: actions/setup-node@v4.0.2
1616

17+
- name: setup pnpm
18+
run: |
19+
corepack enable pnpm
20+
1721
- name: install
1822
run: |
1923
pnpm install -g renovate

0 commit comments

Comments
 (0)