Add cache for vendor
Dieser Commit ist enthalten in:
Ursprung
bac07a17e8
Commit
0397d70070
9
.github/workflows/php.yml
vendored
9
.github/workflows/php.yml
vendored
@ -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
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren