mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-01 05:16:10 +01:00
29 lines
651 B
YAML
29 lines
651 B
YAML
language: node_js
|
|
env:
|
|
matrix:
|
|
- TEST_TYPE=test
|
|
- TEST_TYPE=lint
|
|
- TEST_TYPE=benchmarks
|
|
script:
|
|
- |
|
|
if [ "$TEST_TYPE" = test ]; then
|
|
npm test
|
|
elif [ "$TEST_TYPE" = benchmarks ]; then
|
|
npm run perf
|
|
elif [ "$TEST_TYPE" = lint ]; then
|
|
npm run lint
|
|
fi
|
|
# Slate is compiled with babel and run in the browser
|
|
node_js:
|
|
- "node"
|
|
# Compiling package microtime requires C++11 compiler. Benchmarks will
|
|
# automatically use microtime if installed.
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
before_install:
|
|
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
|