Skip to content

Commit

Permalink
ci(config): add release job
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Aug 6, 2019
1 parent 3c7f2ba commit ba98e39
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,24 +41,27 @@ jobs:
command: npm run test:coverage
- store_test_results:
path: test_results
build:
release:
executor: main-executor
steps:
- checkout_from_cache
- run:
name: build
command: npm run build
- run:
name: release
command: npm run release

# execute the jobs in a orderly manner
workflows:
version: 2
setup_test_build:
setup_test_release:
jobs:
- install
- test:
requires:
- install
- build:
- release:
requires:
- test
filters:
Expand Down

0 comments on commit ba98e39

Please sign in to comment.