File tree 1 file changed +27
-2
lines changed
1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change 23
23
# fallback to using the latest cache if no exact match is found
24
24
- v8-dependencies-
25
25
26
- - run : yarn install
26
+ - run : yarn install --ignore-engines
27
27
28
28
- save_cache :
29
29
paths :
47
47
# fallback to using the latest cache if no exact match is found
48
48
- v-10-dependencies-
49
49
50
- - run : yarn install
50
+ - run : yarn install --ignore-engines
51
51
52
52
- save_cache :
53
53
paths :
57
57
# run tests!
58
58
- run : yarn tests
59
59
60
+ build-node12 :
61
+ << : *defaults
62
+ docker :
63
+ # specify the version you desire here
64
+ - image : circleci/node:12-stretch
65
+ steps :
66
+ - checkout
67
+ # Download and cache dependencies
68
+ - restore_cache :
69
+ keys :
70
+ - v-12-dependencies-{{ checksum "package.json" }}
71
+ # fallback to using the latest cache if no exact match is found
72
+ - v-12-dependencies-
73
+
74
+ - run : yarn install --ignore-engines
75
+
76
+ - save_cache :
77
+ paths :
78
+ - node_modules
79
+ key : v-12-dependencies-{{ checksum "package.json" }}
80
+
81
+ # run tests!
82
+ - run : yarn tests
83
+
60
84
workflows :
61
85
version : 2
62
86
build_and_test :
63
87
jobs :
64
88
- build-node8
65
89
- build-node10
90
+ - build-node12
You can’t perform that action at this time.
0 commit comments