Skip to content

Commit

Permalink
fix: fixed plugin circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 2, 2018
1 parent 7e9c3d0 commit 85b5640
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/circle.yml.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
steps:
- checkout
- attach_workspace: {at: node_modules}
<%_ if (['single', 'multi'].includes(type)) { _%>
- run: ./bin/run -v
<%_ } _%>
<%_ if (['single', 'multi', 'plugin'].includes(type)) { _%>
- run: ./bin/run --help
<%_ } _%>
<%_ if (mocha) { _%>
- run: |
mkdir -p reports
Expand All @@ -32,12 +38,6 @@ jobs:
<%_ } else { _%>
- run: yarn test
<%_ } _%>
<%_ if (['single', 'multi', 'plugin'].includes(type)) { _%>
- run: ./bin/run -v
<%_ } _%>
<%_ if (['single', 'multi'].includes(type)) { _%>
- run: ./bin/run --help
<%_ } _%>
<%_ if (semantic_release) { _%>
- run: yarn exec commitlint -- -x @commitlint/config-conventional --from origin/master
<%_ } _%>
Expand Down

0 comments on commit 85b5640

Please sign in to comment.