Skip to content

Commit

Permalink
Fixed caching of node_modules in GitHub action.
Browse files Browse the repository at this point in the history
  • Loading branch information
SReichelt committed Jan 16, 2021
1 parent 71b9ebd commit 8a4f8ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -17,7 +17,8 @@ jobs:
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: ${{ runner.os }}-node_modules-
- name: Install NPM dependencies
run: npm install
- name: Check dependencies
Expand Down
2 changes: 1 addition & 1 deletion data/libraries/hlm

0 comments on commit 8a4f8ad

Please sign in to comment.