From 5911bbde6c498bb7e71f3b678d60a46cd2e5ac94 Mon Sep 17 00:00:00 2001 From: pimlie Date: Sat, 23 Mar 2019 15:50:25 +0100 Subject: [PATCH] test(circleci): update to 2.1 config (improve readability) --- .circleci/config.yml | 44 ++++++++++++++++++-------------------------- 1 file changed, 18 insertions(+), 26 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index afeae48..3dd1e1d 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -100,38 +100,30 @@ workflows: - test-unit: { requires: [lint] } - test-e2e-ssr: { requires: [lint] } - test-e2e-browser: - name: test-e2e-firefox - browserString: firefox/headless - requires: - - test-e2e-ssr + name: test-e2e-firefox + browserString: firefox/headless + requires: [test-e2e-ssr] - test-e2e-browser: - name: test-e2e-chrome - browserString: chrome/selenium - requires: - - test-e2e-ssr + name: test-e2e-chrome + browserString: chrome/selenium + requires: [test-e2e-ssr] - test-e2e-browser: - name: test-e2e-ie - browserString: browserstack/local/ie:9 - requires: - - test-e2e-ssr + name: test-e2e-ie + browserString: browserstack/local/ie:9 + requires: [test-e2e-ssr] filters: - branches: - ignore: /^pull\/.*/ + branches: { ignore: /^pull\/.*/ } - test-e2e-browser: - name: test-e2e-edge - browserString: browserstack/local/edge:15 - requires: - - test-e2e-ssr + name: test-e2e-edge + browserString: browserstack/local/edge:15 + requires: [test-e2e-ssr] filters: - branches: - ignore: /^pull\/.*/ + branches: { ignore: /^pull\/.*/ } - test-e2e-browser: - name: test-e2e-safari - browserString: browserstack/local/os x=snow leopard/safari:5.1 - requires: - - test-e2e-ssr + name: test-e2e-safari + browserString: browserstack/local/os x=snow leopard/safari:5.1 + requires: [test-e2e-ssr] filters: - branches: - ignore: /^pull\/.*/ + branches: { ignore: /^pull\/.*/ }