-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
46 lines (42 loc) · 821 Bytes
/
Copy path.gitlab-ci.yml
File metadata and controls
46 lines (42 loc) · 821 Bytes
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
39
40
41
42
43
44
45
46
---
stages:
- build
- lint
build:
stage: build
image: composer:2.1.3
before_script:
- apk add bash --no-cache
- apk add git --update
script:
- composer install --no-progress --no-ansi --no-interaction
- ls -al
artifacts:
name: typo3
paths:
- .Build/vendor/
- ./composer.json
expire_in: '1h'
sql:
dependencies:
- build
image: composer:2.1.3
stage: lint
script:
- composer require --dev liquipedia/sqllint
- .Build/bin/sqllint
typoscript:
dependencies:
- build
image: composer:2.1.3
stage: lint
script:
- composer require --dev helmich/typo3-typoscript-lint
- .Build/bin/typoscript-lint
yaml:
image: python:alpine3.7
stage: lint
before_script:
- pip install yamllint==1.10.0
script:
- yamllint -c .yamllint .