fix indentation

This commit is contained in:
Pooya Parsa 2018-03-19 11:00:03 +03:30
parent 9f0bb806f5
commit de2f08fad7

View File

@ -37,7 +37,7 @@ jobs:
<<: *defaults <<: *defaults
steps: steps:
- attach_workspace: - attach_workspace:
at: ~/project at: ~/project
- run: - run:
name: ESLint name: ESLint
command: yarn lint command: yarn lint
@ -46,7 +46,7 @@ jobs:
<<: *defaults <<: *defaults
steps: steps:
- attach_workspace: - attach_workspace:
at: ~/project at: ~/project
- run: - run:
name: Build Fixtures name: Build Fixtures
command: yarn build-fixtures command: yarn build-fixtures
@ -55,7 +55,7 @@ jobs:
<<: *defaults <<: *defaults
steps: steps:
- attach_workspace: - attach_workspace:
at: ~/project at: ~/project
- run: - run:
name: Test name: Test
command: yarn jest test/ command: yarn jest test/
@ -64,15 +64,15 @@ jobs:
<<: *defaults <<: *defaults
steps: steps:
- attach_workspace: - attach_workspace:
at: ~/project at: ~/project
- run: - run:
name: release name: release
command: | command: |
if [ "${CIRCLE_BRANCH}" == "dev" ]; then if [ "${CIRCLE_BRANCH}" == "dev" ]; then
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc
./scripts/release-edge ./scripts/release-edge
fi fi
workflows: workflows:
version: 2 version: 2