Skip to content

Commit ef5196b

Browse files
authored
10.0.1 (#112)
* Point changelog to GitHub * Add node 13 check * Bump deps * Update config.yml
1 parent 5755d4d commit ef5196b

File tree

4 files changed

+420
-890
lines changed

4 files changed

+420
-890
lines changed

.circleci/config.yml

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,61 +3,62 @@ jobs:
33
build:
44
docker:
55
- image: circleci/node:8
6-
working_directory: ~/repo
76
steps:
87
- checkout
98
- run: npm install
109
- run: npm run lint
1110
- persist_to_workspace:
12-
root: ~/repo
13-
paths: .
11+
root: ~/
12+
paths:
13+
- project
1414
test-node8:
1515
docker:
1616
- image: circleci/node:8
17-
working_directory: ~/repo
1817
steps:
1918
- attach_workspace:
20-
at: ~/repo
19+
at: ~/
2120
- run: npm test
2221
test-node9:
2322
docker:
2423
- image: circleci/node:9
25-
working_directory: ~/repo
2624
steps:
2725
- attach_workspace:
28-
at: ~/repo
26+
at: ~/
2927
- run: npm test
3028
test-node10:
3129
docker:
3230
- image: circleci/node:10
33-
working_directory: ~/repo
3431
steps:
3532
- attach_workspace:
36-
at: ~/repo
33+
at: ~/
3734
- run: npm test
3835
test-node11:
3936
docker:
4037
- image: circleci/node:11
41-
working_directory: ~/repo
4238
steps:
4339
- attach_workspace:
44-
at: ~/repo
40+
at: ~/
4541
- run: npm test
4642
test-node12:
4743
docker:
4844
- image: circleci/node:12
49-
working_directory: ~/repo
5045
steps:
5146
- attach_workspace:
52-
at: ~/repo
47+
at: ~/
48+
- run: npm test
49+
test-node13:
50+
docker:
51+
- image: circleci/node:13
52+
steps:
53+
- attach_workspace:
54+
at: ~/
5355
- run: npm test
5456
publish-beta:
5557
docker:
5658
- image: circleci/node:10
57-
working_directory: ~/repo
5859
steps:
5960
- attach_workspace:
60-
at: ~/repo
61+
at: ~/
6162
- run:
6263
name: Authenticate with registry
6364
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
@@ -67,10 +68,9 @@ jobs:
6768
publish-stable:
6869
docker:
6970
- image: circleci/node:10
70-
working_directory: ~/repo
7171
steps:
7272
- attach_workspace:
73-
at: ~/repo
73+
at: ~/
7474
- run:
7575
name: Authenticate with registry
7676
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
@@ -116,13 +116,20 @@ workflows:
116116
filters:
117117
tags:
118118
only: /.*/
119+
- test-node13:
120+
requires:
121+
- build
122+
filters:
123+
tags:
124+
only: /.*/
119125
- publish-beta:
120126
requires:
121127
- test-node8
122128
- test-node9
123129
- test-node10
124130
- test-node11
125131
- test-node12
132+
- test-node13
126133
filters:
127134
tags:
128135
only: /^v\d*\.\d*\.\d*-beta\.\d*$/
@@ -136,6 +143,7 @@ workflows:
136143
- test-node10
137144
- test-node11
138145
- test-node12
146+
- test-node13
139147
filters:
140148
tags:
141149
only: /^v\d*\.\d*\.\d*$/

0 commit comments

Comments
 (0)