mirror of https://github.com/status-im/metro.git
28 lines
446 B
YAML
28 lines
446 B
YAML
environment:
|
|
matrix:
|
|
#- nodejs_version: "4"
|
|
- nodejs_version: "6"
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version x64
|
|
- node --version
|
|
- yarn --version
|
|
- yarn install
|
|
|
|
cache:
|
|
- node_modules
|
|
- .eslintcache
|
|
|
|
test_script:
|
|
- yarn run build
|
|
- yarn test
|
|
|
|
# Don't actually build.
|
|
build: off
|
|
|
|
notifications:
|
|
- provider: Email
|
|
on_build_success: false
|
|
on_build_failure: false
|
|
on_build_status_changed: false
|