17 lines
391 B
YAML
17 lines
391 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: build-app
|
||
|
|
||
|
steps:
|
||
|
- name: build-deps
|
||
|
image: 'composer:2.3'
|
||
|
environment:
|
||
|
APP_ENV: dev
|
||
|
commands:
|
||
|
- composer install --no-progress --no-interaction --optimize-autoloader
|
||
|
- bin/console about
|
||
|
- 'bin/console lint:container'
|
||
|
- 'bin/console lint:twig'
|
||
|
- 'bin/console lint:container'
|
||
|
- 'bin/console lint:yaml'
|