Skip to content

Commit

Permalink
Update examples.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht authored and GitHub committed Oct 14, 2020
1 parent d1255ad commit 19530ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,13 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s

```yaml
- name: Get npm cache directory
id: npm-cache
id: npm-cache-dir
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v2
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache.outputs.dir }}
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
Expand Down

0 comments on commit 19530ba

Please sign in to comment.