Skip to content

Commit a0a429d

Browse files
authored
Test1 (#118)
* Update README.md * Attempt to fix
1 parent d9eb488 commit a0a429d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/publish.yml

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ jobs:
1616
with:
1717
node-version: "18"
1818
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
1927
- name: Install dependencies
2028
run: pnpm install
2129
- name: Build using pnpm

0 commit comments

Comments
 (0)