add more caching

This commit is contained in:
Nick Seguin 2023-12-10 01:47:52 -06:00
parent 7189d87a0b
commit e1500e8174

View file

@ -14,6 +14,17 @@ jobs:
- uses: actions/checkout@v4
- name: install pnpm
run: npm install -g pnpm
- name: Get npm cache directory
id: pnpm-cache-dir
shell: bash
run: echo "dir=$(pnpm store path)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v3
id: npm-cache
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: restore pnpm cache
uses: actions/cache/restore@v3
with: