mirror of
https://github.com/zhigang1992/probot.git
synced 2026-04-28 20:25:24 +08:00
26 lines
262 B
YAML
26 lines
262 B
YAML
sudo: required
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- "8"
|
|
- "10"
|
|
|
|
notifications:
|
|
disabled: true
|
|
|
|
before_install:
|
|
- npm install -g codecov
|
|
|
|
install:
|
|
- npm install
|
|
- npm run build
|
|
|
|
branches:
|
|
except:
|
|
- /^v\d+\.\d+\.\d+$/
|
|
|
|
script:
|
|
- npm test
|
|
- codecov
|