We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70eb1f commit 7e2117aCopy full SHA for 7e2117a
.circleci/config.yml
@@ -52,8 +52,14 @@ jobs:
52
at: ~/react-native-website
53
- run: yarn ci-check
54
- run: yarn test
55
+ - run:
56
+ name: Check for missing index.html (build errors)
57
+ command: |
58
+ if [ ! -f build/react-native/index.html ]; then
59
+ exit 1;
60
+ fi
61
- # Deploys website
62
+ # Deploys website
63
deploy_website:
64
<<: *defaults
65
working_directory: ~/react-native-website/website
@@ -88,7 +94,7 @@ workflows:
88
94
- test_website:
89
95
requires:
90
96
- checkout_code
91
-
97
+
92
98
# If we are on master, deploy docs
93
99
deploy:
100
jobs:
0 commit comments