forked from mdziekon/UniEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (30 loc) · 1.07 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
matrix:
include:
-
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
stage: Tests
dist: xenial
language: php
# list any PHP version you want to test against
php:
# main version should be kept as close as possible to supported OMV's PHP version
# and dependencies should be updated with --prefer-lowest to prevent being ahead
- "7.0"
# install project dependencies
install:
- composer install
script:
- composer run-script ci-php-phpcs
-
# see https://docs.travis-ci.com/user/languages/javascript-with-nodejs/ for more hints
stage: Tests
dist: xenial
language: node_js
node_js:
- "11.6"
# install project dependencies
install:
- npm ci
script:
- npm run ci-js-eslint
- npm run ci-css-stylelint