Summary: Travis defaults to node version 0.10 (!). Explicitly setting the node version to 8. Reviewed By: emilsjolander Differential Revision: D7056888 fbshipit-source-id: f6e31cc75009dc4f322c1750c2ce540afdd641ce
33 lines
628 B
YAML
33 lines
628 B
YAML
# Copyright (c) 2014-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
language: node_js
|
|
node_js:
|
|
- "8"
|
|
|
|
install:
|
|
- cd website
|
|
- yarn
|
|
- cd ..
|
|
|
|
script:
|
|
- cd website
|
|
- yarn build
|
|
- cd ..
|
|
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
github-token: $GITHUB_TOKEN
|
|
fqdn: yogalayout.com
|
|
local-dir: website/public
|
|
email: yogabot@fb.com
|
|
name: Yoga-bot
|
|
keep-history: true
|
|
on:
|
|
branch: master
|