ok
This commit is contained in:
parent
8420e30901
commit
2089ca5659
1 changed files with 7 additions and 2 deletions
|
@ -27,7 +27,12 @@ jobs:
|
|||
key: dependency-cache-{{ checksum "pnpm-lock.yaml" }}-{{ checksum "package.json" }}
|
||||
- run:
|
||||
name: Clear node_airtunes2 cache
|
||||
command: rm -rf ~/.pnpm-store/ || true
|
||||
command: |
|
||||
rm -rf ~/.pnpm-store || true
|
||||
rm -rf node_modules || true
|
||||
- run:
|
||||
name: Clear node_airtunes2 cache
|
||||
command: rm -rf ~/.pnpm-store/tmp/_tmp_1469292_a6751613e03842bf2a6fa9a4b21c3e28 || true
|
||||
- run:
|
||||
name: Install Node Dependencies
|
||||
command: pnpm install --frozen-lockfile
|
||||
|
@ -35,7 +40,7 @@ jobs:
|
|||
name: TypeScript Compile
|
||||
command: pnpm run build
|
||||
- save_cache:
|
||||
key: dependency-cache-{{ checksum "pnpm-lock.yaml" }}
|
||||
key: dependency-cache-{{ checksum "pnpm-lock.yaml" }}-{{ checksum "package.json" }}
|
||||
paths:
|
||||
- node_modules
|
||||
- ~/.pnpm-store
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue