Skip to content

Commit 7b62b96

Browse files
more circle
1 parent 8c2accc commit 7b62b96

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@ version: 2
22
jobs:
33
build:
44
working_directory: ~/app
5+
docker:
6+
- image: node:7
57
steps:
6-
- run: git config --global push.default simple
78
- checkout
89
- run: yarn
910
- run: yarn run bootstrap
1011
- run: yarn run build
1112
- run: yarn test
1213
publish:
1314
working_directory: ~/app
15+
docker:
16+
- image: node:7
1417
steps:
18+
- run: git config --global push.default simple
19+
- run: checkout
1520
- run:
1621
name: Configure git for publishing
1722
command: |
@@ -24,8 +29,6 @@ jobs:
2429
mv ./ci/npmrc .npmrc
2530
./node_modules/.bin/lerna-semantic-release perform
2631
- run: yarn run changelog
27-
docker:
28-
- image: node:7
2932
workflows:
3033
version: 2
3134
build_and_publish:

0 commit comments

Comments
 (0)