We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b43690d commit 69fb8c8Copy full SHA for 69fb8c8
.github/workflows/ci.yml
@@ -50,7 +50,12 @@ jobs:
50
uses: actions/checkout@v3
51
52
- name: Install pnpm
53
- uses: pnpm/[email protected]
+ if: ${{ matrix.node_version != 14 }}
54
+ uses: pnpm/action-setup@v2
55
+
56
+ - name: Install pnpm 8 (node 14)
57
+ if: ${{ matrix.node_version == 14 }}
58
+ run: npm install -g @pnpm/exe@next-8
59
60
- name: Set node version to ${{ matrix.node_version }}
61
uses: actions/setup-node@v3
package.json
@@ -88,7 +88,7 @@
88
"eslint --cache --fix"
89
]
90
},
91
- "packageManager": "pnpm@7.33.6",
+ "packageManager": "pnpm@8.7.1",
92
"pnpm": {
93
"overrides": {
94
"@vitejs/plugin-vue": "workspace:*"
0 commit comments