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 d9f8f77Copy full SHA for d9f8f77
.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
@@ -29,6 +30,10 @@ install:
29
30
- composer install
31
- ./bin/phpunit install
32
33
+after_install:
34
+ # Fail CI if the repo is in a dirty state after building assets
35
+ - yarn install && yarn build && git add --all && git diff --staged --exit-code
36
+
37
script:
38
- ./bin/phpunit
39
# this checks that the source code follows the Symfony Code Syntax rules
0 commit comments