aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar vitalyster2020-11-11 03:46:11 +0300
committerGravatar GitHub2020-11-11 03:46:11 +0300
commit11228b423db6b5a9d4990ddc2b25090728c819ee (patch)
tree1e4cdb158974f336626e33a19611dc12b900be46 /.github
parent96ef97b00ca65281feab91eb75150eeaaa2512e6 (diff)
CI: use NPM cache (#11)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d23beb46..05793a62 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,5 +19,16 @@ jobs:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- - name: Build
+ - name: Cache NPM modules
+ uses: actions/cache@v2
+ env:
+ cache-name: cache-npm-modules
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-build-${{ env.cache-name }}-
+ ${{ runner.os }}-build-
+ ${{ runner.os }}-
+ - name: Run tests
run: gradle check