File tree Expand file tree Collapse file tree 1 file changed +10
-17
lines changed Expand file tree Collapse file tree 1 file changed +10
-17
lines changed Original file line number Diff line number Diff line change 3
3
build :
4
4
docker :
5
5
- image : circleci/node:8
6
- working_directory : ~/repo
7
6
steps :
8
7
- checkout
9
8
- run : npm install
10
9
- run : npm run lint
11
10
- persist_to_workspace :
12
- root : ~/repo
13
- paths : .
11
+ root : ~/
12
+ paths :
13
+ - project
14
14
test-node8 :
15
15
docker :
16
16
- image : circleci/node:8
17
- working_directory : ~/repo
18
17
steps :
19
18
- attach_workspace :
20
- at : ~/repo
19
+ at : ~/
21
20
- run : npm run test:ci
22
21
test-node9 :
23
22
docker :
24
23
- image : circleci/node:9
25
- working_directory : ~/repo
26
24
steps :
27
25
- attach_workspace :
28
- at : ~/repo
26
+ at : ~/
29
27
- run : npm run test:ci
30
28
test-node10 :
31
29
docker :
32
30
- image : circleci/node:10
33
- working_directory : ~/repo
34
31
steps :
35
32
- attach_workspace :
36
- at : ~/repo
33
+ at : ~/
37
34
- run : npm run test:ci
38
35
test-node11 :
39
36
docker :
40
37
- image : circleci/node:11
41
- working_directory : ~/repo
42
38
steps :
43
39
- attach_workspace :
44
- at : ~/repo
40
+ at : ~/
45
41
- run : npm run test:ci
46
42
test-node12 :
47
43
docker :
48
44
- image : circleci/node:12
49
- working_directory : ~/repo
50
45
steps :
51
46
- attach_workspace :
52
- at : ~/repo
47
+ at : ~/
53
48
- run : npm run test:ci
54
49
publish-beta :
55
50
docker :
56
51
- image : circleci/node:10
57
- working_directory : ~/repo
58
52
steps :
59
53
- attach_workspace :
60
- at : ~/repo
54
+ at : ~/
61
55
- run :
62
56
name : Authenticate with registry
63
57
command : echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
67
61
publish-stable :
68
62
docker :
69
63
- image : circleci/node:10
70
- working_directory : ~/repo
71
64
steps :
72
65
- attach_workspace :
73
- at : ~/repo
66
+ at : ~/
74
67
- run :
75
68
name : Authenticate with registry
76
69
command : echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
You can’t perform that action at this time.
0 commit comments