We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a689a commit 0df7cc1Copy full SHA for 0df7cc1
.travis.yml
@@ -1,19 +1,38 @@
1
language: php
2
os: linux
3
dist: xenial
4
-sudo: false
5
6
notifications:
7
email: false
8
+services:
9
+ - docker
10
+
11
php:
12
- 7.0
13
14
+matrix:
15
+ fast_finish: true
16
+ include:
17
+ - name: "Coding standard check"
18
+ - name: "E2E tests"
19
+ script:
20
+ - npm install jest --global
21
+ - npm run docker:up
22
+ - npm run test:e2e
23
+ after_script:
24
+ - npm run docker:down
25
26
branches:
27
only:
28
- master
29
30
+before_install:
31
+ - nvm install lts/erbium
32
+ - nvm install 10
33
34
install:
35
+ - npm install
36
- composer install
37
38
script:
0 commit comments