Skip to content

Commit

Permalink
fix: ci config (#246)
Browse files Browse the repository at this point in the history
CI config needs filters on all jobs referenced from jobs with filters
  • Loading branch information
adampash committed Feb 5, 2019
1 parent d884c34 commit 03c7040
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,18 @@ workflows:
version: 2
build_and_test:
jobs:
- test-node
- test-web
- test-node:
filters: # required since `deploy` has tag filters AND requires `test-node`
branches:
only: /.*/
tags:
only: /.*/
- test-web:
filters: # required since `deploy` has tag filters AND requires `test-web`
branches:
only: /.*/
tags:
only: /.*/
- deploy:
requires:
- test-node
Expand Down

0 comments on commit 03c7040

Please sign in to comment.