Skip to content

Commit ff95846

Browse files
committed
fix: update all occurences of pnpm install
1 parent 02596aa commit ff95846

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,12 @@ jobs:
100100
vite: 'rolldown-vite'
101101
svelte: 'current'
102102
steps:
103+
- uses: actions/checkout@v5
103104
- uses: actions/checkout@v5
104105
- uses: actions/setup-node@v5
105106
with:
106107
node-version: ${{ matrix.node }}
108+
package-manager-cache: false # pnpm is not installed yet
107109
- name: install pnpm
108110
shell: bash
109111
run: |
@@ -113,8 +115,7 @@ jobs:
113115
- uses: actions/setup-node@v5
114116
with:
115117
node-version: ${{ matrix.node }}
116-
cache: 'pnpm'
117-
cache-dependency-path: '**/pnpm-lock.yaml'
118+
package-manager-cache: true # caches pnpm via packageManager field in package.json
118119
- name: install
119120
run: pnpm install --frozen-lockfile --ignore-scripts
120121
- name: downgrade vite to baseline

0 commit comments

Comments
 (0)