File tree Expand file tree Collapse file tree 1 file changed +27
-5
lines changed Expand file tree Collapse file tree 1 file changed +27
-5
lines changed Original file line number Diff line number Diff line change 4
4
#
5
5
version : 2
6
6
jobs :
7
- test-job :
7
+ test-job-8 :
8
8
docker :
9
- - image : circleci/node:9-browsers
9
+ - image : circleci/node:8-browsers
10
+ working_directory : ~/repo
11
+ steps :
12
+ - checkout
13
+ # Download and cache dependencies
14
+ - restore_cache :
15
+ keys :
16
+ - v1-dependencies-{{ checksum "package-lock.json" }}
17
+ # fallback to using the latest cache if no exact match is found
18
+ - v1-dependencies-
19
+ - run : npm install
20
+ - run : npm run build
21
+ - run : npm test
22
+ - save_cache :
23
+ paths :
24
+ - node_modules
25
+ - packages/cli
26
+ key : v1-dependencies-{{ checksum "package-lock.json" }}
27
+ test-job-10 :
28
+ docker :
29
+ - image : circleci/node:10-browsers
10
30
working_directory : ~/repo
11
31
steps :
12
32
- checkout
27
47
28
48
publish-job :
29
49
docker :
30
- - image : circleci/node:9
50
+ - image : circleci/node:10
31
51
working_directory : ~/repo
32
52
steps :
33
53
- checkout
@@ -46,11 +66,13 @@ workflows:
46
66
version : 2
47
67
test :
48
68
jobs :
49
- - test-job
69
+ - test-job-8
70
+ - test-job-10
50
71
- publish-job :
51
72
filters :
52
73
branches :
53
74
only :
54
75
- master
55
76
requires :
56
- - test-job
77
+ - test-job-8
78
+ - test-job-10
You can’t perform that action at this time.
0 commit comments