1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-04 13:37:46 +02:00

Update workflow.yml

This commit is contained in:
Netanel Rabinowitz 2022-12-04 20:06:26 +02:00 committed by GitHub
parent 9ffb8815e0
commit 10d5832a9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,10 +25,15 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Determine npm cache directory
id: npm-cache
shell: bash
run: |
echo "dir=$(npm config get cache)">>$GITHUB_OUTPUT
- name: Restore npm cache
uses: actions/cache@v3
with:
path: $(npm config get cache)
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-