We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118e786 commit f8dc9c7Copy full SHA for f8dc9c7
.circleci/config.yml
@@ -28,7 +28,7 @@ jobs:
28
if [ "${CIRCLE_BRANCH}" == "master" ]; then
29
./ci/deploy.sh api
30
fi
31
- build_and_test_ui:
+ build_and_test_and_deploy_ui:
32
docker:
33
- image: circleci/openjdk:8-jdk-browsers
34
working_directory: ~/workbench
@@ -61,10 +61,16 @@ jobs:
61
command: |
62
export PATH=~/node/bin:$PATH
63
npm test -- --no-watch
64
+ - deploy:
65
+ name: Deploy to gcloud test project
66
+ command: |
67
+ if [ "${CIRCLE_BRANCH}" == "master" ]; then
68
+ ./ci/deploy.sh ui
69
+ fi
70
71
workflows:
72
version: 2
- build_and_test:
73
+ build_and_test_and_deploy:
74
jobs:
75
- build_and_test_and_deploy_api
- - build_and_test_ui
76
+ - build_and_test_and_deploy_ui
0 commit comments