blob: b454e553dd895f77f3c19dd2f2fc515e046f5325 (
plain)
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
47
48
49
50
51
52
53
54
55
56
|
language: php
jobs:
fast_finish: true
allow_failures:
- name: "Translations"
include:
- name: "PHP 8.0 Syntax, linter and tests"
php: "8.0"
install:
- composer global require squizlabs/php_codesniffer
- composer global require phpunit/phpunit ^9
script:
- phpenv rehash
- find . -name \*.php -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null 2>php-l-results
- if [ -s php-l-results ]; then cat php-l-results; exit 1; fi
- COMPOSER_BIN=$(composer global config --absolute bin-dir)
- $COMPOSER_BIN/phpunit --bootstrap ./tests/bootstrap.php --verbose ./tests
- $COMPOSER_BIN/phpcs . -p -s
- name: "PHP 5.6 Syntax"
php: "5.6"
script:
- phpenv rehash
- find . -name \*.php -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null 2>php-l-results
- if [ -s php-l-results ]; then cat php-l-results; exit 1; fi
- name: "Translations format"
php: "7.4"
script:
- phpenv rehash
- php cli/manipulate.translation.php -a format
- git diff --exit-code
- name: "Translations"
php: "7.4"
script:
- phpenv rehash
- php cli/check.translation.php -r
- name: "Linter JS, CSS, SCSS, Shell and Docker"
language: node_js
node_js:
- "node"
env:
- HADOLINT="$HOME/hadolint"
install:
- npm install --save-dev jshint stylelint stylelint-order stylelint-scss stylelint-config-recommended-scss
- curl -sL -o ${HADOLINT} "https://github.com/hadolint/hadolint/releases/download/v1.18.0/hadolint-$(uname -s)-$(uname -m)" && chmod 700 ${HADOLINT}
script:
- node_modules/jshint/bin/jshint .
# check SCSS separately
- stylelint --syntax scss "**/*.scss"
- stylelint "**/*.css"
- bash tests/shellchecks.sh
- git ls-files --exclude='*Dockerfile*' --ignored | xargs --max-lines=1 "$HADOLINT"
|