Add cache for vendor

This commit is contained in:
Stéphane Goetz 2019-11-14 08:19:32 +01:00 committed by GitHub
parent bac07a17e8
commit 0397d70070
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -13,6 +13,15 @@ jobs:
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache vendor
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest