Compare commits

...

1 Commits

Author SHA1 Message Date
xiaoxia ce0bf1801a temp: add clean cache workflow
Clean NPM Cache / clean-cache (push) Successful in 0s
2026-07-14 22:19:31 +08:00
+18
View File
@@ -0,0 +1,18 @@
name: Clean NPM Cache
on:
push:
branches:
- temp-clean-npm-cache
jobs:
clean-cache:
runs-on: saas
steps:
- name: Remove npm cache volume
run: |
echo "Removing xiaoxia-npm-cache volume..."
docker volume rm xiaoxia-npm-cache 2>&1 || echo "Volume not found or already removed"
echo "Done. Current volumes:"
docker volume ls | grep npm || echo "No npm volumes found"