Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 11c3975

Browse files
committedNov 3, 2021
added action caching to speedup releases
1 parent 256c37c commit 11c3975

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ jobs:
1212
- uses: actions/setup-node@v2
1313
with:
1414
node-version: 10
15+
- uses: actions/cache@v2
16+
with:
17+
path: ~/.npm
18+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
19+
restore-keys: |
20+
${{ runner.os }}-node-
1521
- run: npm install
1622
# TODO: enable test as soon as they are implemented
1723
# - run: npm test

0 commit comments

Comments
 (0)
Please sign in to comment.