mirror of
https://github.com/zhigang1992/styled-components.git
synced 2026-04-29 09:45:54 +08:00
25 lines
453 B
YAML
25 lines
453 B
YAML
version: "{build}"
|
|
skip_tags: true
|
|
build: off
|
|
clone_depth: 1
|
|
shallow_clone: true
|
|
matrix:
|
|
fast_finish: true
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 7
|
|
- nodejs_version: 6
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version x64
|
|
- set CI=true
|
|
- yarn
|
|
cache:
|
|
- '%LOCALAPPDATA%/Yarn'
|
|
test_script:
|
|
- node --version
|
|
- yarn --version
|
|
- yarn run flow
|
|
- yarn run lint && npm run test
|