Add cache for vendor

This commit is contained in:
Stéphane Goetz 2019-11-14 08:19:32 +01:00 gecommit door GitHub
bovenliggende bac07a17e8
commit 0397d70070
Geen bekende sleutel gevonden voor deze handtekening in de database
GPG sleutel-ID: 4AEE18F83AFDEB23

Bestand weergeven

@ -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