Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit 0007efd

Browse files
committed
chore: use travis
1 parent 3c6ffcd commit 0007efd

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

.aegir.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict'
2+
3+
module.exports = {
4+
bundlesize: { maxSize: '140kB' },
5+
}

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: node_js
2+
cache: npm
3+
4+
stages:
5+
- check
6+
- test
7+
- cov
8+
9+
node_js:
10+
- '10'
11+
12+
os:
13+
- linux
14+
- osx
15+
16+
script: npx nyc -s npm run test:node -- --bail
17+
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
18+
19+
jobs:
20+
include:
21+
- stage: check
22+
script:
23+
- npx aegir build --bundlesize
24+
- npx aegir commitlint --travis
25+
- npx aegir dep-check
26+
- npm run lint
27+
28+
notifications:
29+
email: false

ci/Jenkinsfile

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)