File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change 8
8
docker :
9
9
# specify the version you desire here
10
10
- image : circleci/node:8.11-stretch-browsers
11
-
12
- # Specify service dependencies here if necessary
13
- # CircleCI maintains a library of pre-built images
14
- # documented at https://circleci.com/docs/2.0/circleci-images/
15
- # - image: circleci/mongo:3.4.4
16
-
17
- working_directory : ~/repo
18
-
19
11
steps :
20
12
- checkout
21
13
# Download and cache dependencies
22
14
- restore_cache :
23
15
key : v1-dependencies-{{ checksum "package.json" }}
24
- # fallback to using the latest cache if no exact match is found
25
- - v1-dependencies-
26
16
27
17
- run :
28
- command : npm install
18
+ command : ' npm install'
29
19
name : install npm packages
30
20
31
21
- save_cache :
35
25
36
26
# run tests!
37
27
- run :
38
- command : npm test
28
+ command : ' npm test'
39
29
name : run tests
40
30
41
31
You can’t perform that action at this time.
0 commit comments