Skip to content

Commit 89d090c

Browse files
committed
added action caching to speedup releases
1 parent decb54b commit 89d090c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish.yml

+6
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)