fix: ci config (#246)

CI config needs filters on all jobs referenced from jobs with filters
pull/247/head v.1.1.0
Adam Pash 5 years ago committed by GitHub
parent d884c3470c
commit 03c7040065
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save