Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit b4d1de5

Browse files
author
Zane Starr
committed
ci: add travis ci support
1 parent dcaa085 commit b4d1de5

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

.travis.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
language: node_js
2+
cache: npm
3+
stages:
4+
- check
5+
- test
6+
- cov
7+
8+
node_js:
9+
- '10'
10+
11+
os:
12+
- linux
13+
- osx
14+
15+
script: npx nyc -s npm run test:node -- --bail
16+
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
17+
18+
jobs:
19+
include:
20+
- os: windows
21+
cache: false
22+
23+
- stage: check
24+
script:
25+
- npx aegir commitlint --travis
26+
- npx aegir dep-check
27+
- npm run lint
28+
29+
- stage: test
30+
name: chrome
31+
addons:
32+
chrome: stable
33+
script: npx aegir test -t browser -t webworker
34+
35+
- stage: test
36+
name: firefox
37+
addons:
38+
firefox: latest
39+
script: npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless
40+
41+
notifications:
42+
email: false

ci/Jenkinsfile

-2
This file was deleted.

0 commit comments

Comments
 (0)