We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9eb488 commit a0a429dCopy full SHA for a0a429d
.github/workflows/publish.yml
@@ -16,6 +16,14 @@ jobs:
16
with:
17
node-version: "18"
18
check-latest: true
19
+ - name: Clear Corepack Cache
20
+ run: corepack prepare pnpm@latest --activate
21
+ - name: Install pnpm
22
+ run: npm install -g pnpm
23
+ - name: Ensure Clean Slate
24
+ run: |
25
+ if [ -d "node_modules" ]; then rm -rf node_modules; fi
26
+ if [ -f "pnpm-lock.yaml" ]; then rm pnpm-lock.yaml; fi
27
- name: Install dependencies
28
run: pnpm install
29
- name: Build using pnpm
0 commit comments