build: add travis.yml (#1985)

This commit is contained in:
neverland 2019-09-08 08:26:23 +08:00 committed by GitHub
parent 73374a8d81
commit 9e9cbd36b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

19
.travis.yml Normal file
View File

@ -0,0 +1,19 @@
language: node_js
sudo: required
addons:
chrome: stable
node_js:
- 10
os: linux
cache:
yarn: true
branches:
only:
- master
- dev
install:
- |
yarn install
script:
- |
npm run lint

View File

@ -7,7 +7,7 @@
"description": "轻量、可靠的小程序 UI 组件库",
"scripts": {
"dev": "node build/dev.js",
"lint": "eslint ./packages --ext .js,.ts",
"lint": "eslint ./packages --ext .js,.ts && stylelint \"packages/**/*.less\" --fix",
"release": "sh build/release.sh",
"release:site": "sh build/release-site.sh",
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",