Skip to content

Commit 03c7040

Browse files
authored
fix: ci config (#246)
CI config needs filters on all jobs referenced from jobs with filters
1 parent d884c34 commit 03c7040

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.circleci/config.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,18 @@ workflows:
5858
version: 2
5959
build_and_test:
6060
jobs:
61-
- test-node
62-
- test-web
61+
- test-node:
62+
filters: # required since `deploy` has tag filters AND requires `test-node`
63+
branches:
64+
only: /.*/
65+
tags:
66+
only: /.*/
67+
- test-web:
68+
filters: # required since `deploy` has tag filters AND requires `test-web`
69+
branches:
70+
only: /.*/
71+
tags:
72+
only: /.*/
6373
- deploy:
6474
requires:
6575
- test-node

0 commit comments

Comments
 (0)