We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdd9c23 commit 12ff365Copy full SHA for 12ff365
3 files changed
.github/workflows/ci.yml
@@ -67,8 +67,14 @@ jobs:
67
packages/create-vite/template**
68
**.md
69
70
+ - name: Install pnpm (node 14, pnpm 7)
71
+ if: steps.changed-files.outputs.only_changed != 'true' && matrix.node_version == 14
72
+ uses: pnpm/action-setup@v2.2.4
73
+ with:
74
+ version: 7
75
+
76
- name: Install pnpm
- if: steps.changed-files.outputs.only_changed != 'true'
77
+ if: steps.changed-files.outputs.only_changed != 'true' && matrix.node_version != 14
78
uses: pnpm/action-setup@v2.2.4
79
80
- name: Set node version to ${{ matrix.node_version }}
package.json
@@ -104,7 +104,7 @@
104
"eslint --cache --fix"
105
]
106
},
107
- "packageManager": "pnpm@7.30.0",
+ "packageManager": "pnpm@8.2.0",
108
"pnpm": {
109
"overrides": {
110
"vite": "workspace:*"
0 commit comments