File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 6
6
build_and_test :
7
7
docker :
8
8
# specify the version you desire here
9
- - image : circleci/node:9.11.1
9
+ - image : circleci/node:10.15.2
10
10
11
11
working_directory : ~/repo
12
12
@@ -16,36 +16,36 @@ jobs:
16
16
# Download and cache dependencies
17
17
- restore_cache :
18
18
keys :
19
- - v1-dependencies-{{ checksum "package.json" }}
20
- # fallback to using the latest cache if no exact match is found
21
- - v1-dependencies-
19
+ - v1-dependencies-{{ checksum "package.json" }}
20
+ # fallback to using the latest cache if no exact match is found
21
+ - v1-dependencies-
22
22
23
- - run : npm install
23
+ - run : yarn
24
24
25
25
- save_cache :
26
26
paths :
27
27
- node_modules
28
28
key : v1-dependencies-{{ checksum "package.json" }}
29
29
30
30
# run tests!
31
- - run : npm run test
31
+ - run : yarn test
32
32
33
33
semantic_release :
34
34
docker :
35
35
# specify the version you desire here
36
- - image : circleci/node:9.11.1
36
+ - image : circleci/node:10.15.2
37
37
working_directory : ~/repo
38
38
steps :
39
39
- checkout
40
40
41
41
# Download and cache dependencies
42
42
- restore_cache :
43
43
keys :
44
- - v1-dependencies-{{ checksum "package.json" }}
45
- # fallback to using the latest cache if no exact match is found
46
- - v1-dependencies-
44
+ - v1-dependencies-{{ checksum "package.json" }}
45
+ # fallback to using the latest cache if no exact match is found
46
+ - v1-dependencies-
47
47
48
- - run : npm install
48
+ - run : yarn
49
49
50
50
- save_cache :
51
51
paths :
You can’t perform that action at this time.
0 commit comments