diff --git a/.circleci/config.yml b/.circleci/config.yml index ba583e6794441587604025b377e0c35261e80310..a4aa95d464d21992974a421673c8a79a1ea44a49 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,7 @@ jobs: test: macos: xcode: "10.2.1" + parallelism: 3 steps: - run: name: iOS unit tests @@ -27,4 +28,11 @@ jobs: command: 'npm run test-unit-android' - run: name: Detox iOS CI - command: 'npm run test-e2e-ios-release' \ No newline at end of file + command: 'npm run test-e2e-ios-release' + +workflows: + version: 1 + build_and_test: + jobs: + - build + - test \ No newline at end of file