Skip to content

Commit b9765ce

Browse files
committed
migrate npm install to pnpm install
1 parent 6f160c8 commit b9765ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pytest.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151

5252
- uses: actions/setup-node@v4.0.2
5353
with:
54-
cache: npm
55-
cache-dependency-path: examples/${{ matrix.c2a_user }}/package-lock.json
54+
cache: pnpm
55+
cache-dependency-path: examples/${{ matrix.c2a_user }}/pnpm-lock.yaml
5656

5757
- name: Cache C2A devtools
5858
id: cache-c2a-devtools
@@ -88,7 +88,7 @@ jobs:
8888
- name: the heaviest objects in universe
8989
working-directory: ./examples/mobc
9090
run: |
91-
npm ci
91+
pnpm ci
9292
9393
- name: build mobc C2A
9494
if: matrix.c2a_user == 'subobc'
@@ -105,7 +105,7 @@ jobs:
105105
if: matrix.c2a_user == 'mobc'
106106
working-directory: ./examples/mobc
107107
run: |
108-
npm run devtools:sils &
108+
pnpm run devtools:sils &
109109
sleep 3
110110
- name: run C2A (mobc & subobc)
111111
if: matrix.c2a_user == 'subobc'

.github/workflows/validate-renovate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- name: install
1818
run: |
19-
npm install -g renovate
19+
pnpm install -g renovate
2020
- name: validate
2121
run: |
2222
renovate-config-validator

0 commit comments

Comments
 (0)