Add cache for vendor

Cette révision appartient à :
Stéphane Goetz 2019-11-14 08:19:32 +01:00 révisé par GitHub
Parent bac07a17e8
révision 0397d70070
Signature inconnue de Gitea
ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec 9 ajouts et 0 suppressions

Voir le fichier

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