File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
3
3
jobs :
4
- Node8 tests :
4
+ Node10 tests :
5
5
docker :
6
- - image : circleci/node:8
6
+ - image : circleci/node:10
7
7
steps :
8
8
- checkout
9
9
- run : node --version > node_version
17
17
- ~/.cache/yarn
18
18
- run : yarn test
19
19
20
- Node10 tests :
20
+ Node12 tests :
21
21
docker :
22
- - image : circleci/node:10
22
+ - image : circleci/node:12
23
23
steps :
24
24
- checkout
25
25
- run : node --version > node_version
36
36
37
37
Release :
38
38
docker :
39
- - image : circleci/node:10
39
+ - image : circleci/node:12
40
40
steps :
41
41
- checkout
42
42
- run : node --version > node_version
@@ -54,18 +54,19 @@ jobs:
54
54
git remote set-url origin "https://${GH_TOKEN}@github.com/nodkz/mongodb-memory-server.git" > /dev/null 2>&1
55
55
git checkout master
56
56
- run : echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ${HOME}/.npmrc 2> /dev/null
57
+ - run : yarn build
57
58
- run : yarn release --yes
58
59
59
60
workflows :
60
61
version : 2
61
62
build :
62
63
jobs :
63
- - Node8 tests
64
64
- Node10 tests
65
+ - Node12 tests
65
66
- Release :
66
67
requires :
67
- - Node8 tests
68
68
- Node10 tests
69
+ - Node12 tests
69
70
filters :
70
71
branches :
71
72
only : master
Original file line number Diff line number Diff line change 34
34
"watch" : " jest --env node --watch" ,
35
35
"jest" : " jest --env node" ,
36
36
"build" : " tsc --build tsconfig.build.json" ,
37
- "release" : " yarn build && lerna publish" ,
37
+ "release" : " lerna publish" ,
38
38
"postinstall" : " yarn build"
39
39
}
40
40
}
You can’t perform that action at this time.
0 commit comments