Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit b91a8dc

Browse files
committed
fix: add travis.yml
fix: add language node fix: add tests fix: add osx windows fix: naming fix: fix deps and add lock fix: fix deps fix: remove node 8 chore: update lock feat: add matrix and full tests feat: add gitattributes feat: fix git attributes path feat: test attributes 2 fix: trigger fix: fix line ending chore: remove allow failure chore: remove lock chore: ignore lock
1 parent b6a7ab6 commit b91a8dc

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto
2+
test/** text eol=lf
3+
src/init-files/** text eol=lf

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ test/fixtures/go-ipfs-repo/LOG
4040
test/fixtures/go-ipfs-repo/LOG.old
4141

4242
# while testing npm5
43-
package-lock.json
4443
yarn.lock
44+
package-lock.json

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
- windows
15+
16+
script: npm run test:node -- --bail
17+
18+
jobs:
19+
include:
20+
- stage: check
21+
node_js: 10
22+
script:
23+
- npm run lint

0 commit comments

Comments
 (0)