mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-01 05:16:10 +01:00
20 lines
401 B
YAML
20 lines
401 B
YAML
language: node_js
|
|
script:
|
|
- npm test
|
|
- npm run benchmarks
|
|
- npm run lint
|
|
node_js:
|
|
- "node"
|
|
- "6"
|
|
- "4"
|
|
# 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
|