forked from ClubNix/Votix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (33 loc) · 1.13 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- node_modules
yarn: true
php:
- '7.2'
- '7.3'
before_install:
- composer self-update
install:
- composer install
- yarn install
- npm run build
- php ./bin/console doctrine:database:drop --force
- php ./bin/console doctrine:database:create
- php ./bin/console doctrine:schema:update --force
- php ./bin/console doctrine:fixtures:load --no-interaction
script:
# this run tests
- php "./vendor/codeception/codeception/codecept" run --steps
# this checks that the YAML config files contain no syntax errors
- php ./bin/console lint:yaml config
# this checks that the Twig template files contain no syntax errors
- php ./bin/console lint:twig templates
# this checks that the XLIFF translations contain no syntax errors
- php ./bin/console lint:xliff translations
# this checks that the application doesn't use dependencies with known security vulnerabilities
- ./bin/console security:check
# this checks that Doctrine's mapping configurations are valid
- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction