Skip to content

Commit

Permalink
test(circleci): update to 2.1 config (improve readability)
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlie committed Mar 23, 2019
1 parent 531f5b9 commit 5911bbd
Showing 1 changed file with 18 additions and 26 deletions.
44 changes: 18 additions & 26 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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\/.*/ }


0 comments on commit 5911bbd

Please sign in to comment.