File tree Expand file tree Collapse file tree 1 file changed +1
-25
lines changed Expand file tree Collapse file tree 1 file changed +1
-25
lines changed Original file line number Diff line number Diff line change @@ -10,50 +10,26 @@ jobs:
10
10
working_directory : ~/repo
11
11
steps :
12
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
13
- run : npm install
20
14
- run : npm run build
21
15
- run : npm test
22
- - save_cache :
23
- paths :
24
- - node_modules
25
- key : v1-dependencies-{{ checksum "package-lock.json" }}
26
16
test-job-10 :
27
17
docker :
28
18
- image : circleci/node:10-browsers
29
19
working_directory : ~/repo
30
20
steps :
31
21
- checkout
32
- # Download and cache dependencies
33
- - restore_cache :
34
- keys :
35
- - v1-dependencies-{{ checksum "package-lock.json" }}
36
- # fallback to using the latest cache if no exact match is found
37
- - v1-dependencies-
38
22
- run : npm install
39
23
- run : npm run build
40
24
- run : npm test
41
- - save_cache :
42
- paths :
43
- - node_modules
44
- key : v1-dependencies-{{ checksum "package-lock.json" }}
45
25
46
26
publish-job :
47
27
docker :
48
28
- image : circleci/node:10
49
29
working_directory : ~/repo
50
30
steps :
51
31
- checkout
52
- - restore_cache :
53
- keys :
54
- - v1-dependencies-{{ checksum "package-lock.json" }}
55
- # fallback to using the latest cache if no exact match is found
56
- - v1-dependencies-
32
+ - run : npm install
57
33
- run :
58
34
name : Pre-Publish Script
59
35
command : ./tools/publish.sh
You can’t perform that action at this time.
0 commit comments