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

Commit 18a6d21

Browse files
authored
chore: use travis (#20)
1 parent 7746dab commit 18a6d21

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

Diff for: .aegir.js

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

Diff for: .travis.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 dep-check
25+
- npm run lint
26+
27+
notifications:
28+
email: false

Diff for: ci/Jenkinsfile

-2
This file was deleted.

0 commit comments

Comments
 (0)