We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2accc commit 7b62b96Copy full SHA for 7b62b96
.circleci/config.yml
@@ -2,16 +2,21 @@ version: 2
2
jobs:
3
build:
4
working_directory: ~/app
5
+ docker:
6
+ - image: node:7
7
steps:
- - run: git config --global push.default simple
8
- checkout
9
- run: yarn
10
- run: yarn run bootstrap
11
- run: yarn run build
12
- run: yarn test
13
publish:
14
15
16
17
18
+ - run: git config --global push.default simple
19
+ - run: checkout
20
- run:
21
name: Configure git for publishing
22
command: |
@@ -24,8 +29,6 @@ jobs:
24
29
mv ./ci/npmrc .npmrc
25
30
./node_modules/.bin/lerna-semantic-release perform
26
31
- run: yarn run changelog
27
- docker:
28
- - image: node:7
32
workflows:
33
version: 2
34
build_and_publish:
0 commit comments