mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 12:18:46 +08:00
9f0774813f
* Add yarn.lock * Update travis config * Use yarnpkg registry
19 lines
589 B
YAML
19 lines
589 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js: stable
|
|
cache:
|
|
directories:
|
|
- $HOME/.npm
|
|
- $HOME/.yarn-cache
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH=$HOME/.yarn/bin:$PATH
|
|
- export TRAVIS_COMMIT_MSG="[deploy] $(git log --format='%h - %B' --no-merges -n 1)"
|
|
- export TRAVIS_COMMIT_USER="$(git log --no-merges -n 1 --format=%an)"
|
|
- export TRAVIS_COMMIT_EMAIL="$(git log --no-merges -n 1 --format=%ae)"
|
|
install: yarn install
|
|
script: yarn run test
|
|
after_success:
|
|
- sh build/deploy-ci.sh
|
|
- cat ./test/unit/coverage/lcov.info | ./node_modules/.bin/coveralls
|