File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 7
7
build :
8
8
docker :
9
9
# specify the version you desire here
10
- - image : circleci/node:9.11.2
10
+ - image : circleci/node:10
11
11
branches :
12
12
only :
13
13
- master
14
- # Specify service dependencies here if necessary
15
- # CircleCI maintains a library of pre-built images
16
- # documented at https://circleci.com/docs/2.0/circleci-images/
17
- # - image: circleci/mongo:3.4.4
14
+ - /^greenkeeper/.*$/
18
15
19
16
steps :
20
17
- checkout
21
18
22
19
# Download and cache dependencies
23
- - run :
24
- name : Install Wine
25
- command : sudo apt-get install wine -y
26
20
- restore_cache :
27
21
name : Restore Yarn Package Cache
28
22
keys :
35
29
key : yarn-packages-{{ checksum "yarn.lock" }}
36
30
paths :
37
31
- ~/.cache/yarn
38
-
32
+
39
33
# run tests!
40
- - run : yarn test --runInBand
34
+ - run : xvfb-run yarn test --runInBand
41
35
You can’t perform that action at this time.
0 commit comments