Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Use Travis-CI to build site on PR #99

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ env:
- export NODE_VERSION="6"
os:
- linux
- osx
# pre-install to bring in the correct version of node via nvm
before_install:
- git submodule update --init --recursive
Expand All @@ -14,6 +13,7 @@ before_install:
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm config set python `which python`
- npm install -g yarn
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-4.8";
export CXX="g++-4.8";
Expand All @@ -32,5 +32,6 @@ addons:
- gcc-4.8
# script needed to test, because defaults don't work on osx
script:
- npm install
- yarn install
- npm run lint
- npm run build
Loading