1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-01 05:16:10 +01:00
slate/.travis.yml

33 lines
641 B
YAML
Raw Normal View History

2016-06-15 12:07:12 -07:00
language: node_js
node_js: [node]
before_install:
# Export the C++11 compiler.
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
cache: yarn
env:
# Do two runs, one for testing and one for linting.
matrix:
- TEST_TYPE=test:coverage
- TEST_TYPE=lint:eslint
- TEST_TYPE=lint:prettier
before_script:
- |
set -e
if [[ $TEST_TYPE == 'lint:eslint' ]]; then
lerna bootstrap
yarn build
fi
set +e
script:
# Run testing or linting depending on the environment.
- |
set -e
yarn $TEST_TYPE
if [[ $TEST_TYPE == 'test:coverage' ]]; then yarn codecov; fi
set +e