Run composer validate
in CI
This ensures that the composer.json and composer.lock files are in sync before trying to install the site.
This commit is contained in:
parent
a1b90a7948
commit
f21b61665c
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -34,6 +34,9 @@ jobs:
|
|||
coverage: none
|
||||
tools: composer:v1
|
||||
|
||||
- name: Ensure that composer.json and composer.lock are in sync
|
||||
run: composer validate
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --prefer-dist --no-interaction --no-suggest
|
||||
|
||||
|
|
Loading…
Reference in a new issue