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 418b7ac commit 7e5dce9Copy full SHA for 7e5dce9
.travis.yml
@@ -10,9 +10,12 @@ cache:
10
directories:
11
- ".eslintcache"
12
- "node_modules"
13
-script: yarn test:ci
+script:
14
+ - yarn test:ci
15
+ # Build the website in PRs so we make sure that PRs do not break the website
16
+ - if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_NODE_VERSION" = "10" ]; then yarn build:website; fi
17
-after_success: yarn build:website
18
+before_deploy: yarn build:website
19
deploy:
20
provider: pages
21
skip_cleanup: true
0 commit comments