We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2a323 commit 1ae5bb1Copy full SHA for 1ae5bb1
.travis.yml
@@ -2,6 +2,7 @@ language: php
2
sudo: false
3
4
cache:
5
+ yarn: true
6
directories:
7
- $HOME/.composer/cache/files
8
- ./bin/.phpunit
@@ -43,3 +44,5 @@ script:
43
44
- ./bin/console security:check
45
# this checks that Doctrine's mapping configurations are valid
46
- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction
47
+ # Fail CI if the repo is in a dirty state after building assets
48
+ - yarn install && yarn build && git add --all && git diff --staged --shortstat --exit-code
0 commit comments