Skip to content

Commit 6429c6c

Browse files
committed
Merge remote-tracking branch 'exporter/master'
2 parents 4b8fb44 + c3dfe30 commit 6429c6c

26 files changed

+3295
-0
lines changed
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'use strict'
2+
3+
module.exports = {
4+
karma: {
5+
browserNoActivityTimeout: 1000 * 1000,
6+
}
7+
}
+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
docs
2+
yarn.lock
3+
**/node_modules/
4+
**/*.log
5+
test/repo-tests*
6+
**/bundle.js
7+
8+
# Logs
9+
logs
10+
*.log
11+
12+
coverage
13+
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
.nyc_output
25+
26+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27+
.grunt
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
build
33+
34+
# Dependency directory
35+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
36+
node_modules
37+
38+
lib
39+
dist
40+
test/test-data/go-ipfs-repo/LOCK
41+
test/test-data/go-ipfs-repo/LOG
42+
test/test-data/go-ipfs-repo/LOG.old
43+
44+
# while testing npm5
45+
package-lock.json
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
.DS_Store
3+
tests/repo-tests*
4+
5+
# Logs
6+
logs
7+
*.log
8+
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directory
30+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
31+
node_modules
32+
33+
test
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
language: node_js
2+
cache: npm
3+
stages:
4+
- check
5+
- test
6+
- cov
7+
8+
node_js:
9+
- '12'
10+
11+
os:
12+
- linux
13+
- osx
14+
- windows
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 commitlint --travis
24+
- npx aegir dep-check
25+
- npm run lint
26+
27+
- stage: test
28+
name: chrome
29+
addons:
30+
chrome: stable
31+
script: npx aegir test -t browser -t webworker
32+
33+
- stage: test
34+
name: firefox
35+
addons:
36+
firefox: latest
37+
script: npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless
38+
39+
notifications:
40+
email: false

0 commit comments

Comments
 (0)